mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
b21d6710cf
This forbids unnecessary `eslint-disable` comments.
Ref gh-4095
Closes gh-4520
(cherry picked from 46f9810b73
)
21 lines
223 B
JSON
21 lines
223 B
JSON
{
|
|
"root": true,
|
|
|
|
"extends": "jquery",
|
|
|
|
"reportUnusedDisableDirectives": true,
|
|
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
|
|
"rules": {
|
|
"strict": ["error", "global"]
|
|
}
|
|
}
|