From b505cbc690a080fab8a2ff6bcb200a2d160c0a86 Mon Sep 17 00:00:00 2001 From: Yury Bondarenko Date: Tue, 27 Jun 2023 16:11:10 +0200 Subject: [PATCH] ESLint: enforce indentation https://eslint.org/docs/latest/rules/indent --- .eslintrc.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 4ef3931326..3ac576c161 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -32,6 +32,13 @@ "plugin:rxjs/recommended" ], "rules": { + "indent": [ + "error", + 2, + { + "SwitchCase": 1 + } + ], "max-classes-per-file": [ "error", 1