An open API service indexing awesome lists of open source software.

https://github.com/polyconseil/eslint-plugin-typeorm


https://github.com/polyconseil/eslint-plugin-typeorm

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# @taccolaa/eslint-plugin-typeorm

` npm install @taccolaa/eslint-plugin-typeorm --save-dev `

.eslintrc :
``` json
"plugins": ["@taccolaa/typeorm"],
```

``` json
"rules": {
"@taccolaa/typeorm/no-double-where-query": "error"
},
```
It will match this patten :

``` js
abc.where().where()
```