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

77 lines
1.9 KiB
JSON
Raw Normal View History

2015-08-19 04:22:46 +02:00
{
2016-10-25 14:18:52 +02:00
"root": true,
2020-06-12 20:43:39 +02:00
"extends": [
"plugin:import/errors",
"plugin:import/warnings",
"plugin:unicorn/recommended",
"xo",
2020-06-12 20:43:39 +02:00
"xo/browser"
],
2016-10-25 14:18:52 +02:00
"rules": {
"arrow-body-style": "off",
2020-06-12 20:43:39 +02:00
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
2020-06-12 20:43:39 +02:00
"indent": [
"error",
2,
{
"MemberExpression": "off",
"SwitchCase": 1
2016-10-25 14:18:52 +02:00
}
],
2020-06-12 20:43:39 +02:00
"max-params": [
"warn",
5
2016-10-25 14:18:52 +02:00
],
"new-cap": [
"error",
{
"properties": false
}
],
2020-06-12 20:43:39 +02:00
"no-console": "error",
2016-10-25 14:18:52 +02:00
"no-mixed-operators": "off",
"no-negated-condition": "off",
2020-06-12 20:43:39 +02:00
"object-curly-spacing": [
"error",
"always"
],
"operator-linebreak": [
"error",
"after"
],
2020-06-12 20:43:39 +02:00
"semi": [
"error",
"never"
],
"unicorn/consistent-function-scoping": "off",
"unicorn/explicit-length-check": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-array-method-this-argument": "off",
2020-06-12 20:43:39 +02:00
"unicorn/no-for-loop": "off",
"unicorn/no-null": "off",
"unicorn/no-unused-properties": "error",
"unicorn/no-useless-undefined": "off",
"unicorn/numeric-separators-style": "off",
2020-06-12 20:43:39 +02:00
"unicorn/prefer-array-find": "off",
"unicorn/prefer-array-flat": "off",
"unicorn/prefer-dom-node-append": "off",
"unicorn/prefer-dom-node-dataset": "off",
"unicorn/prefer-dom-node-remove": "off",
2020-06-12 20:43:39 +02:00
"unicorn/prefer-includes": "off",
2020-10-27 07:08:57 +01:00
"unicorn/prefer-math-trunc": "off",
"unicorn/prefer-module": "off",
2020-06-12 20:43:39 +02:00
"unicorn/prefer-number-properties": "off",
"unicorn/prefer-optional-catch-binding": "off",
"unicorn/prefer-prototype-methods": "off",
2020-06-12 20:43:39 +02:00
"unicorn/prefer-query-selector": "off",
"unicorn/prefer-reflect-apply": "off",
"unicorn/prefer-set-has": "off",
"unicorn/prevent-abbreviations": "off"
2016-10-25 14:18:52 +02:00
}
2015-08-19 04:22:46 +02:00
}