jquery-ui/ui/.eslintrc.json
Michał Gołębiowski-Owczarek 70dae67b73
Build: Migrate from JSHint & JSCS to ESLint
Fixes #15393
Closes gh-1958
2021-06-07 00:58:12 +02:00

39 lines
609 B
JSON

{
"parserOptions": {
"ecmaVersion": 5
},
"env": {
"browser": true,
"jquery": true,
"node": false
},
"rules": {
"strict": [ "error", "function" ],
// The following rule is relaxed due to too many violations:
"no-unused-vars": [ "error", { "vars": "all", "args": "after-used" } ],
// Too many violations:
"camelcase": "off",
"no-nested-ternary": "off"
},
"globals": {
"define": false,
"Globalize": false
},
"overrides": [
{
"files": [ "i18n/**/*.js" ],
"rules": {
// We want to keep all the strings in separate single lines
"max-len": "off"
}
}
]
}