2017-12-16 12:44:17 +01:00
|
|
|
{
|
|
|
|
"env": {
|
2018-07-19 18:48:52 +02:00
|
|
|
"es6": false
|
2017-12-16 12:44:17 +01:00
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 5,
|
|
|
|
"sourceType": "script"
|
|
|
|
},
|
2018-10-15 14:24:21 +02:00
|
|
|
"extends": "../.eslintrc.json",
|
2017-12-16 12:44:17 +01:00
|
|
|
"rules": {
|
2018-07-19 18:48:52 +02:00
|
|
|
"no-new": "off",
|
2017-12-16 12:44:17 +01:00
|
|
|
// Best Practices
|
|
|
|
"no-magic-numbers": "off",
|
|
|
|
"vars-on-top": "off",
|
|
|
|
|
|
|
|
// Stylistic Issues
|
|
|
|
"spaced-comment": "off",
|
|
|
|
|
|
|
|
// ECMAScript 6
|
|
|
|
"no-var": "off",
|
|
|
|
"object-shorthand": "off",
|
|
|
|
"prefer-arrow-callback": "off",
|
|
|
|
"prefer-template": "off",
|
|
|
|
"prefer-rest-params": "off"
|
|
|
|
}
|
|
|
|
}
|