jquery-ui/tests/.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

27 lines
377 B
JSON

{
"parserOptions": {
"ecmaVersion": 5
},
"env": {
"browser": true,
"jquery": true,
"node": false
},
"rules": {
// Too many violations:
"max-len": "off",
"no-unused-vars": "off",
"strict": "off" // ideally, `[ "error", "function" ]`
},
"globals": {
"define": false,
"Globalize": false,
"QUnit": false,
"require": true,
"requirejs": true
}
}