From e84a71ab6664a43cf508d3056f07faea68dac4bc Mon Sep 17 00:00:00 2001 From: Garrett Johnson Date: Tue, 28 May 2019 13:02:52 -0700 Subject: [PATCH] add indent rule for typescript --- package.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 49291365bb..8a59d075df 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,14 @@ "@typescript-eslint" ], "rules": { - "@typescript-eslint/no-unused-vars": 1 + "@typescript-eslint/no-unused-vars": 1, + "@typescript-eslint/indent": [ + "error", + "tab", + { + "SwitchCase": 1 + } + ] } }, "scripts": { -- GitLab