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