0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-13 01:08:58 +01:00
Bootstrap/js/tests/unit/.eslintrc.json
2021-09-15 15:44:20 +03:00

35 lines
674 B
JSON

{
"extends": [
"../../../.eslintrc.json",
"plugin:qunit/recommended"
],
"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-rest-params": "off",
"prefer-template": "off",
"unicorn/prefer-add-event-listener": "off",
"unicorn/prefer-spread": "off"
}
}