mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-04 16:24:22 +01:00
1b48122641
Enforce ES5 for tests
32 lines
558 B
JSON
32 lines
558 B
JSON
{
|
|
"extends": [
|
|
"../../../.eslintrc.json"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 5,
|
|
"sourceType": "script"
|
|
},
|
|
"env": {
|
|
"es6": false,
|
|
"jquery": true,
|
|
"qunit": true
|
|
},
|
|
"globals": {
|
|
"bootstrap": false,
|
|
"sinon": false,
|
|
"Util": false,
|
|
"Alert": false,
|
|
"Button": false,
|
|
"Carousel": false,
|
|
"Simulator": false,
|
|
"Toast": false
|
|
},
|
|
"rules": {
|
|
"no-var": "off",
|
|
"object-shorthand": "off",
|
|
"prefer-arrow-callback": "off",
|
|
"prefer-template": "off",
|
|
"prefer-rest-params": "off"
|
|
}
|
|
}
|