2016-10-25 08:18:52 -04:00
|
|
|
{
|
|
|
|
"env": {
|
2017-04-20 06:33:51 -04:00
|
|
|
"es6": false,
|
2017-10-04 10:31:35 -04:00
|
|
|
"qunit": true,
|
|
|
|
"jquery": true
|
2016-10-25 08:18:52 -04:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"Util": false
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 5,
|
|
|
|
"sourceType": "script"
|
|
|
|
},
|
2016-12-31 00:09:26 -05:00
|
|
|
"extends": "../.eslintrc.json",
|
2016-10-25 08:18:52 -04:00
|
|
|
"rules": {
|
|
|
|
// Best Practices
|
|
|
|
"consistent-return": "off",
|
|
|
|
"no-alert": "off",
|
|
|
|
"no-console": "off",
|
|
|
|
"no-empty-function": "off",
|
|
|
|
"no-extend-native": "off",
|
|
|
|
"no-magic-numbers": "off",
|
|
|
|
"vars-on-top": "off",
|
|
|
|
|
2016-12-31 00:09:26 -05:00
|
|
|
// NodeJS and CommonJS
|
|
|
|
"global-require": "off",
|
|
|
|
"no-process-env": "off",
|
|
|
|
"no-process-exit": "off",
|
2017-08-29 15:16:00 -04:00
|
|
|
"no-sync": "off",
|
2016-12-31 00:09:26 -05:00
|
|
|
|
2016-10-25 08:18:52 -04:00
|
|
|
// Stylistic Issues
|
|
|
|
"brace-style": "off",
|
|
|
|
"func-style": "off",
|
|
|
|
"max-statements-per-line": "off",
|
|
|
|
"object-curly-newline": "off",
|
|
|
|
"object-property-newline": "off",
|
2016-12-31 00:09:26 -05:00
|
|
|
"spaced-comment": "off",
|
2016-10-25 08:18:52 -04:00
|
|
|
|
|
|
|
// ECMAScript 6
|
|
|
|
"no-var": "off",
|
|
|
|
"object-shorthand": "off",
|
|
|
|
"prefer-arrow-callback": "off",
|
|
|
|
"prefer-template": "off",
|
|
|
|
"prefer-rest-params": "off"
|
|
|
|
}
|
|
|
|
}
|