https://github.com/polyconseil/eslint-plugin-typeorm
https://github.com/polyconseil/eslint-plugin-typeorm
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/polyconseil/eslint-plugin-typeorm
- Owner: Polyconseil
- License: mit
- Created: 2020-05-13T08:27:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-13T08:56:50.000Z (about 6 years ago)
- Last Synced: 2025-02-23T14:49:23.582Z (over 1 year ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 18
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
```