0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-20 12:52:19 +01:00
Bootstrap/js/tests/unit/.eslintrc.json

36 lines
660 B
JSON
Raw Normal View History

2016-10-25 23:18:52 +11:00
{
2020-06-12 21:43:39 +03:00
"extends": [
"../../../.eslintrc.json"
],
"overrides": [
{
"files": [
"*.js"
],
"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": {
// ES6
"no-var": "off",
"object-shorthand": "off",
"prefer-arrow-callback": "off",
"prefer-template": "off",
"prefer-rest-params": "off"
}
}
]
2016-10-25 23:18:52 +11:00
}