mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
40 lines
807 B
JSON
40 lines
807 B
JSON
{
|
|
"env": {
|
|
"qunit": true,
|
|
"es6": false
|
|
},
|
|
"globals": {
|
|
"Util": false
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 5,
|
|
"sourceType": "script"
|
|
},
|
|
"rules": {
|
|
// Best Practices
|
|
"consistent-return": "off",
|
|
"no-alert": "off",
|
|
"no-console": "off",
|
|
"no-empty-function": "off",
|
|
"no-extend-native": "off",
|
|
"no-magic-numbers": "off",
|
|
"vars-on-top": "off",
|
|
|
|
// Strict Mode
|
|
"strict": "off",
|
|
|
|
// Stylistic Issues
|
|
"brace-style": "off",
|
|
"func-style": "off",
|
|
"max-statements-per-line": "off",
|
|
"object-curly-newline": "off",
|
|
"object-property-newline": "off",
|
|
|
|
// ECMAScript 6
|
|
"no-var": "off",
|
|
"object-shorthand": "off",
|
|
"prefer-arrow-callback": "off",
|
|
"prefer-template": "off",
|
|
"prefer-rest-params": "off"
|
|
}
|
|
}
|