update eslint rules
This commit is contained in:
parent
8c8677e2e5
commit
d594a23fbb
@ -12,7 +12,8 @@
|
|||||||
],
|
],
|
||||||
"globals": {
|
"globals": {
|
||||||
"Atomics": "readonly",
|
"Atomics": "readonly",
|
||||||
"SharedArrayBuffer": "readonly"
|
"SharedArrayBuffer": "readonly",
|
||||||
|
"BigInt": true
|
||||||
},
|
},
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"ecmaVersion": 2022,
|
"ecmaVersion": 2022,
|
||||||
@ -86,7 +87,7 @@
|
|||||||
"warn",
|
"warn",
|
||||||
"never"
|
"never"
|
||||||
],
|
],
|
||||||
"eqeqeq": "warn",
|
"eqeqeq": "error",
|
||||||
"func-call-spacing": "warn",
|
"func-call-spacing": "warn",
|
||||||
"func-name-matching": "warn",
|
"func-name-matching": "warn",
|
||||||
"func-names": "warn",
|
"func-names": "warn",
|
||||||
@ -103,7 +104,13 @@
|
|||||||
"warn",
|
"warn",
|
||||||
4,
|
4,
|
||||||
{
|
{
|
||||||
"SwitchCase": 1
|
"SwitchCase": 1,
|
||||||
|
"VariableDeclarator": "first",
|
||||||
|
"FunctionDeclaration": {"parameters": "first"},
|
||||||
|
"CallExpression": {"arguments": "first"},
|
||||||
|
"ArrayExpression": "first",
|
||||||
|
"ObjectExpression": "first",
|
||||||
|
"ImportDeclaration": "first"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"init-declarations": "warn",
|
"init-declarations": "warn",
|
||||||
@ -112,14 +119,15 @@
|
|||||||
"single"
|
"single"
|
||||||
],
|
],
|
||||||
"jsx-quotes": [
|
"jsx-quotes": [
|
||||||
"warn",
|
"error",
|
||||||
"prefer-single"
|
"prefer-single"
|
||||||
],
|
],
|
||||||
"key-spacing": [
|
"key-spacing": [
|
||||||
"warn",
|
"warn",
|
||||||
{
|
{
|
||||||
"beforeColon": false,
|
"beforeColon": false,
|
||||||
"afterColon": true
|
"afterColon": true,
|
||||||
|
"align": "value"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"keyword-spacing": [
|
"keyword-spacing": [
|
||||||
@ -158,7 +166,6 @@
|
|||||||
"new-parens": "warn",
|
"new-parens": "warn",
|
||||||
"no-alert": "warn",
|
"no-alert": "warn",
|
||||||
"no-array-constructor": "warn",
|
"no-array-constructor": "warn",
|
||||||
// "no-bitwise": "warn",
|
|
||||||
"no-buffer-constructor": "warn",
|
"no-buffer-constructor": "warn",
|
||||||
"no-caller": "warn",
|
"no-caller": "warn",
|
||||||
"no-console": "warn",
|
"no-console": "warn",
|
||||||
@ -168,7 +175,7 @@
|
|||||||
"no-duplicate-imports": "warn",
|
"no-duplicate-imports": "warn",
|
||||||
"no-else-return": "warn",
|
"no-else-return": "warn",
|
||||||
"no-empty-function": "warn",
|
"no-empty-function": "warn",
|
||||||
"no-eq-null": "warn",
|
"no-eq-null": "off",
|
||||||
"no-eval": "warn",
|
"no-eval": "warn",
|
||||||
"no-extend-native": "warn",
|
"no-extend-native": "warn",
|
||||||
"no-extra-bind": "warn",
|
"no-extra-bind": "warn",
|
||||||
@ -186,7 +193,14 @@
|
|||||||
"no-loop-func": "warn",
|
"no-loop-func": "warn",
|
||||||
"no-mixed-requires": "warn",
|
"no-mixed-requires": "warn",
|
||||||
"no-multi-assign": "warn",
|
"no-multi-assign": "warn",
|
||||||
"no-multi-spaces": "warn",
|
"no-multi-spaces": [
|
||||||
|
"warn", {
|
||||||
|
"ignoreEOLComments": true,
|
||||||
|
"exceptions": {
|
||||||
|
"ImportDeclaration": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
"no-multi-str": "warn",
|
"no-multi-str": "warn",
|
||||||
"no-multiple-empty-lines": "warn",
|
"no-multiple-empty-lines": "warn",
|
||||||
"no-native-reassign": "warn",
|
"no-native-reassign": "warn",
|
||||||
@ -217,7 +231,7 @@
|
|||||||
"no-sequences": "warn",
|
"no-sequences": "warn",
|
||||||
"no-setter-return": "warn",
|
"no-setter-return": "warn",
|
||||||
"no-spaced-func": "warn",
|
"no-spaced-func": "warn",
|
||||||
"no-tabs": "warn",
|
"no-tabs": "error",
|
||||||
"no-template-curly-in-string": "error",
|
"no-template-curly-in-string": "error",
|
||||||
"no-throw-literal": "warn",
|
"no-throw-literal": "warn",
|
||||||
"no-trailing-spaces": "warn",
|
"no-trailing-spaces": "warn",
|
||||||
@ -233,7 +247,6 @@
|
|||||||
"no-useless-rename": "warn",
|
"no-useless-rename": "warn",
|
||||||
"no-useless-return": "warn",
|
"no-useless-return": "warn",
|
||||||
"no-var": "warn",
|
"no-var": "warn",
|
||||||
// "no-void": "warn",
|
|
||||||
"no-whitespace-before-property": "error",
|
"no-whitespace-before-property": "error",
|
||||||
"nonblock-statement-body-position": [
|
"nonblock-statement-body-position": [
|
||||||
"warn",
|
"warn",
|
||||||
@ -256,6 +269,7 @@
|
|||||||
"warn",
|
"warn",
|
||||||
"before"
|
"before"
|
||||||
],
|
],
|
||||||
|
"padding-line-between-statements": "warn",
|
||||||
"padded-blocks": [
|
"padded-blocks": [
|
||||||
"warn",
|
"warn",
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user