diff --git a/.eslintrc.json b/.eslintrc.json index 2edf688..b93582b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,6 +8,11 @@ "sourceType": "module" }, "rules": { + "indent": [ + "error", + 4, + { "SwitchCase": 1 } + ], "linebreak-style": [ "error", "unix" @@ -18,22 +23,14 @@ { "allowTemplateLiterals": true } ], "prefer-template": [ - "error" + "error" ], "semi": [ "error", "always" ], - "no-tabs": [ - "off" - ], - "indent": [ - "error", - "tab", - { "SwitchCase": 1 } - ], "no-trailing-spaces": ["error", { "skipBlankLines": true }], "camelcase": [ "off" ], "prefer-const": [ "error" ] } -} \ No newline at end of file +}