Update .eslintrc to comply with prettier
parent
925d815f47
commit
df31206b28
116
ui/.eslintrc
116
ui/.eslintrc
|
@ -48,17 +48,9 @@
|
|||
}
|
||||
},
|
||||
"rules": {
|
||||
"quotes": [
|
||||
1,
|
||||
"single"
|
||||
],
|
||||
"func-style": 0,
|
||||
"func-names": 0,
|
||||
"arrow-parens": 0,
|
||||
"comma-dangle": [
|
||||
2,
|
||||
"always-multiline"
|
||||
],
|
||||
"no-cond-assign": 2,
|
||||
"no-console": [
|
||||
"error",
|
||||
|
@ -80,7 +72,6 @@
|
|||
"no-ex-assign": 2,
|
||||
"no-extra-boolean-cast": 2,
|
||||
"no-extra-parens": 0,
|
||||
"no-extra-semi": 2,
|
||||
"no-func-assign": 2,
|
||||
"no-inner-declarations": [
|
||||
2,
|
||||
|
@ -92,7 +83,6 @@
|
|||
"no-obj-calls": 2,
|
||||
"no-regex-spaces": 2,
|
||||
"no-sparse-arrays": 2,
|
||||
"no-unexpected-multiline": 2,
|
||||
"no-unreachable": 2,
|
||||
"use-isnan": 2,
|
||||
"valid-jsdoc": 0,
|
||||
|
@ -103,10 +93,6 @@
|
|||
"consistent-return": 0,
|
||||
"curly": 2,
|
||||
"default-case": 0,
|
||||
"dot-location": [
|
||||
2,
|
||||
"property"
|
||||
],
|
||||
"dot-notation": 2,
|
||||
"eqeqeq": 2,
|
||||
"no-alert": 2,
|
||||
|
@ -121,7 +107,6 @@
|
|||
"no-extend-native": 2,
|
||||
"no-extra-bind": 2,
|
||||
"no-fallthrough": 2,
|
||||
"no-floating-decimal": 2,
|
||||
"no-implicit-coercion": 0,
|
||||
"no-implied-eval": 2,
|
||||
"no-iterator": 2,
|
||||
|
@ -138,7 +123,6 @@
|
|||
]
|
||||
}
|
||||
],
|
||||
"no-multi-spaces": 2,
|
||||
"no-multi-str": 2,
|
||||
"no-native-reassign": 2,
|
||||
"no-new-func": 2,
|
||||
|
@ -183,39 +167,12 @@
|
|||
2,
|
||||
"nofunc"
|
||||
],
|
||||
"array-bracket-spacing": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"block-spacing": [
|
||||
2,
|
||||
"always"
|
||||
],
|
||||
"brace-style": [
|
||||
2,
|
||||
"1tbs"
|
||||
],
|
||||
"camelcase": [
|
||||
2,
|
||||
{
|
||||
"properties": "never"
|
||||
}
|
||||
],
|
||||
"comma-spacing": [
|
||||
2,
|
||||
{
|
||||
"before": false,
|
||||
"after": true
|
||||
}
|
||||
],
|
||||
"comma-style": [
|
||||
2,
|
||||
"last"
|
||||
],
|
||||
"computed-property-spacing": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"consistent-this": [
|
||||
2,
|
||||
"self"
|
||||
|
@ -230,13 +187,6 @@
|
|||
"SwitchCase": 1
|
||||
}
|
||||
],
|
||||
"key-spacing": [
|
||||
2,
|
||||
{
|
||||
"beforeColon": false,
|
||||
"afterColon": true
|
||||
}
|
||||
],
|
||||
"linebreak-style": [
|
||||
2,
|
||||
"unix"
|
||||
|
@ -248,14 +198,11 @@
|
|||
"max-params": 0,
|
||||
"max-statements": 0,
|
||||
"new-cap": 0,
|
||||
"new-parens": 2,
|
||||
"newline-after-var": 0,
|
||||
"no-array-constructor": 2,
|
||||
"no-negated-condition": 2,
|
||||
"no-inline-comments": 0,
|
||||
"no-lonely-if": 2,
|
||||
"no-mixed-spaces-and-tabs": 2,
|
||||
"no-multiple-empty-lines": 2,
|
||||
"no-nested-ternary": 2,
|
||||
"no-new-object": 2,
|
||||
"no-plusplus": [
|
||||
|
@ -264,73 +211,22 @@
|
|||
"allowForLoopAfterthoughts": true
|
||||
}
|
||||
],
|
||||
"no-spaced-func": 2,
|
||||
"no-ternary": 0,
|
||||
"no-trailing-spaces": 2,
|
||||
"no-underscore-dangle": 0,
|
||||
"no-unneeded-ternary": 2,
|
||||
"object-curly-spacing": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"one-var": 0,
|
||||
"operator-assignment": [
|
||||
2,
|
||||
"always"
|
||||
],
|
||||
"padded-blocks": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"quote-props": [
|
||||
2,
|
||||
"as-needed",
|
||||
{
|
||||
"keywords": false,
|
||||
"numbers": false
|
||||
}
|
||||
],
|
||||
"require-jsdoc": 0,
|
||||
"semi-spacing": [
|
||||
2,
|
||||
{
|
||||
"before": false,
|
||||
"after": true
|
||||
}
|
||||
],
|
||||
"semi": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"sort-vars": 0,
|
||||
"keyword-spacing": "error",
|
||||
"space-before-blocks": [
|
||||
2,
|
||||
"always"
|
||||
],
|
||||
"space-before-function-paren": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"space-in-parens": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"space-infix-ops": 2,
|
||||
"space-unary-ops": 2,
|
||||
"spaced-comment": [
|
||||
2,
|
||||
"always"
|
||||
],
|
||||
"wrap-regex": 0,
|
||||
"arrow-body-style": 0,
|
||||
"arrow-spacing": [
|
||||
2,
|
||||
{
|
||||
"before": true,
|
||||
"after": true
|
||||
}
|
||||
],
|
||||
"no-confusing-arrow": 0,
|
||||
"no-class-assign": 2,
|
||||
"no-const-assign": 2,
|
||||
|
@ -344,10 +240,6 @@
|
|||
"prefer-arrow-callback": 0,
|
||||
"prefer-const": 2,
|
||||
"prefer-template": 2,
|
||||
"jsx-quotes": [
|
||||
1,
|
||||
"prefer-double"
|
||||
],
|
||||
"react/display-name": 0,
|
||||
"react/jsx-no-bind": [
|
||||
2,
|
||||
|
@ -359,14 +251,6 @@
|
|||
2,
|
||||
"always"
|
||||
],
|
||||
"react/jsx-curly-spacing": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"react/jsx-equals-spacing": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"react/jsx-key": 2,
|
||||
"react/jsx-no-duplicate-props": 2,
|
||||
"react/jsx-no-undef": 2,
|
||||
|
|
Loading…
Reference in New Issue