twbs--bootstrap/js/tests/unit/.eslintrc.json

34 lines
632 B
JSON
Raw Normal View History

2016-10-25 08:18:52 -04:00
{
"env": {
"es6": false,
"qunit": true,
"jquery": true
2016-10-25 08:18:52 -04:00
},
"globals": {
"Util": false
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script"
},
"extends": "../../../.eslintrc.json",
2016-10-25 08:18:52 -04:00
"rules": {
"no-console": "off",
2016-10-25 08:18:52 -04: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 08:18:52 -04:00
// ECMAScript 6
"no-var": "off",
"object-shorthand": "off",
"prefer-arrow-callback": "off",
"prefer-template": "off",
"prefer-rest-params": "off"
}
}