jquery/.eslintrc-node.json
Ed S 46f9810b73
Build: Enable reportUnusedDisableDirectives in ESLint
This forbids unnecessary `eslint-disable` comments.

Ref gh-4095
Closes gh-4520
2020-04-20 19:01:20 +02:00

21 lines
223 B
JSON

{
"root": true,
"extends": "jquery",
"reportUnusedDisableDirectives": true,
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"es6": true,
"node": true
},
"rules": {
"strict": ["error", "global"]
}
}