0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-28 10:24:19 +01:00
Bootstrap/site/.eslintrc.json

51 lines
1.0 KiB
JSON
Raw Normal View History

{
2020-06-12 20:43:39 +02:00
"root": true,
"env": {
"es6": false,
"jquery": true
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script"
},
2020-06-12 20:43:39 +02:00
"extends": [
"plugin:unicorn/recommended",
"xo",
"xo/browser"
],
"rules": {
2020-06-12 20:43:39 +02:00
"capitalized-comments": "off",
"indent": [
"error",
2,
{
"MemberExpression": "off",
"SwitchCase": 1
}
],
"no-var": "off",
2020-06-12 20:43:39 +02:00
"object-curly-spacing": [
"error",
"always"
],
"object-shorthand": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
2020-06-12 20:43:39 +02:00
"semi": [
"error",
"never"
],
"strict": "error",
"unicorn/no-for-loop": "off",
"unicorn/no-null": "off",
"unicorn/prefer-array-find": "off",
"unicorn/prefer-dom-node-append": "off",
"unicorn/prefer-dom-node-dataset": "off",
2020-06-12 20:43:39 +02:00
"unicorn/prefer-includes": "off",
"unicorn/prefer-number-properties": "off",
"unicorn/prefer-module": "off",
2020-06-12 20:43:39 +02:00
"unicorn/prefer-query-selector": "off",
"unicorn/prevent-abbreviations": "off"
}
}