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

Ref gh-4095
Closes gh-4520

(cherry picked from 46f9810b73)
2020-04-20 19:06:13 +02:00

21 lines
223 B
JSON

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