From a9c6f72eac2fe8d1f544d1fd2c4eb29f2e3fcaef Mon Sep 17 00:00:00 2001 From: Derik Badman Date: Mon, 16 Oct 2017 16:00:57 -0400 Subject: [PATCH] fix linter for spaces --- .eslintrc.json | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) 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 +}