0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/js/tests/unit/.eslintrc.json

40 lines
764 B
JSON
Raw Normal View History

2016-10-25 14:18:52 +02:00
{
"env": {
"es6": false,
"jquery": true,
"qunit": true
2016-10-25 14:18:52 +02:00
},
"globals": {
"bootstrap": false,
2018-03-09 23:17:57 +01:00
"sinon": false,
"Util": false,
"Alert": false,
"Button": false,
"Carousel": false,
"Simulator": false
2016-10-25 14:18:52 +02:00
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script"
},
"extends": "../../../.eslintrc.json",
2016-10-25 14:18:52 +02:00
"rules": {
"no-console": "off",
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",
"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"
}
}