diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index b48d887db..bf4c767c9 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -17,6 +17,7 @@ "func-names": "off", // "func-style": ["error", "declaration"], "id-length": ["error", { "min": 1 }], + "indent": ["error", 4, { "SwitchCase": 1 }], // "max-len": ["error", { "code": 120 }], "max-params": ["warn", 6], "max-statements": ["warn", 28], @@ -55,10 +56,8 @@ "callback-return": "off", "consistent-return": "off", "consistent-this": "off", - "default-case": "off", "func-style": "off", "function-paren-newline": "off", - "global-require": "off", "guard-for-in": "off", "key-spacing": "off", "line-comment-position": "off", |