2016-10-25 14:18:52 +02:00
|
|
|
{
|
|
|
|
"env": {
|
2017-04-20 12:33:51 +02:00
|
|
|
"es6": false,
|
2018-04-09 11:08:46 +02:00
|
|
|
"jquery": true,
|
|
|
|
"qunit": true
|
2016-10-25 14:18:52 +02:00
|
|
|
},
|
|
|
|
"globals": {
|
2018-04-09 11:08:46 +02:00
|
|
|
"bootstrap": false,
|
2018-03-09 23:17:57 +01:00
|
|
|
"sinon": false,
|
2018-04-10 09:28:29 +02:00
|
|
|
"Util": false,
|
|
|
|
"Alert": false,
|
2018-03-03 22:04:11 +01:00
|
|
|
"Button": false,
|
|
|
|
"Carousel": false,
|
2018-08-23 18:31:25 +02:00
|
|
|
"Simulator": false,
|
|
|
|
"Toast": false
|
2016-10-25 14:18:52 +02:00
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 5,
|
|
|
|
"sourceType": "script"
|
|
|
|
},
|
2017-12-16 12:44:17 +01:00
|
|
|
"extends": "../../../.eslintrc.json",
|
2016-10-25 14:18:52 +02:00
|
|
|
"rules": {
|
2018-12-06 09:51:35 +01:00
|
|
|
"no-console": "error",
|
2016-10-25 14:18:52 +02:00
|
|
|
// Best Practices
|
|
|
|
"consistent-return": "off",
|
|
|
|
"no-magic-numbers": "off",
|
|
|
|
"vars-on-top": "off",
|
|
|
|
|
|
|
|
// Stylistic Issues
|
|
|
|
"func-style": "off",
|
2016-12-31 06:09:26 +01:00
|
|
|
"spaced-comment": "off",
|
2016-10-25 14:18:52 +02:00
|
|
|
|
|
|
|
// ECMAScript 6
|
|
|
|
"no-var": "off",
|
|
|
|
"object-shorthand": "off",
|
|
|
|
"prefer-arrow-callback": "off",
|
|
|
|
"prefer-template": "off",
|
|
|
|
"prefer-rest-params": "off"
|
|
|
|
}
|
|
|
|
}
|