0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-08 01:47:24 +01:00
Bootstrap/site/.eslintrc.json

27 lines
488 B
JSON
Raw Normal View History

{
"env": {
2018-07-19 18:48:52 +02:00
"es6": false
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script"
},
2018-10-15 14:24:21 +02:00
"extends": "../.eslintrc.json",
"rules": {
2018-07-19 18:48:52 +02:00
"no-new": "off",
// Best Practices
"no-magic-numbers": "off",
"vars-on-top": "off",
// Stylistic Issues
"spaced-comment": "off",
// ECMAScript 6
"no-var": "off",
"object-shorthand": "off",
"prefer-arrow-callback": "off",
"prefer-template": "off",
"prefer-rest-params": "off"
}
}