Update eslint
This commit is contained in:
parent
5a0dc68445
commit
a58a18b361
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,7 @@
|
||||||
"jsx-quotes": ["error", "prefer-single"],
|
"jsx-quotes": ["error", "prefer-single"],
|
||||||
"max-classes-per-file": "off",
|
"max-classes-per-file": "off",
|
||||||
"max-lines": "off",
|
"max-lines": "off",
|
||||||
"max-params": ["error", 5],
|
"max-params": ["error", 10],
|
||||||
"max-statements": ["error", 15],
|
"max-statements": ["error", 15],
|
||||||
"multiline-comment-style": "off",
|
"multiline-comment-style": "off",
|
||||||
"multiline-ternary": "off",
|
"multiline-ternary": "off",
|
||||||
|
@ -57,6 +57,7 @@
|
||||||
"no-undef-init": "off",
|
"no-undef-init": "off",
|
||||||
"no-unused-vars": "off",
|
"no-unused-vars": "off",
|
||||||
"no-use-before-define": "off",
|
"no-use-before-define": "off",
|
||||||
|
"no-useless-constructor": "off",
|
||||||
"no-warning-comments": "off",
|
"no-warning-comments": "off",
|
||||||
"object-curly-newline": ["error", { "consistent": true }],
|
"object-curly-newline": ["error", { "consistent": true }],
|
||||||
"object-curly-spacing": ["error", "always", { "arraysInObjects": false, "objectsInObjects": false }],
|
"object-curly-spacing": ["error", "always", { "arraysInObjects": false, "objectsInObjects": false }],
|
||||||
|
|
Reference in a new issue