From 456ebae87b00b4f57d1ad9c87626a1cbc1d89bce Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 22 Jul 2022 01:11:10 +0200 Subject: [PATCH] ESLint fix for switches --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 826fc3e..e4ec140 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -20,7 +20,7 @@ "curly": ["error", "multi-line", "consistent"], "dot-location": ["error", "property"], "handle-callback-err": "off", - "indent": ["error", "tab"], + "indent": ["error", "tab", { "SwitchCase": 1 }], "keyword-spacing": "error", "max-nested-callbacks": ["error", { "max": 4 }], "max-statements-per-line": ["error", { "max": 2 }],