1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-27 07:14:36 +02:00

Update .eslintrc.json

Enforce ES5 for tests
This commit is contained in:
XhmikosR
2020-10-05 15:55:17 +03:00
parent 5d066caace
commit 1b48122641

View File

@@ -2,11 +2,10 @@
"extends": [ "extends": [
"../../../.eslintrc.json" "../../../.eslintrc.json"
], ],
"overrides": [ "parserOptions": {
{ "ecmaVersion": 5,
"files": [ "sourceType": "script"
"*.js" },
],
"env": { "env": {
"es6": false, "es6": false,
"jquery": true, "jquery": true,
@@ -23,7 +22,6 @@
"Toast": false "Toast": false
}, },
"rules": { "rules": {
// ES6
"no-var": "off", "no-var": "off",
"object-shorthand": "off", "object-shorthand": "off",
"prefer-arrow-callback": "off", "prefer-arrow-callback": "off",
@@ -31,5 +29,3 @@
"prefer-rest-params": "off" "prefer-rest-params": "off"
} }
} }
]
}