From 6d53adb37cdafa10003d41e635f27ebc1ea17f32 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni <6173598+dpschen@users.noreply.github.com> Date: Thu, 19 Jun 2025 10:08:17 +0200 Subject: [PATCH] chore(frontend): enforce tab indentation --- frontend/eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js index 1e6f26e2a..4266ec133 100644 --- a/frontend/eslint.config.js +++ b/frontend/eslint.config.js @@ -17,6 +17,7 @@ export default [ 'quotes': ['error', 'single'], 'comma-dangle': ['error', 'always-multiline'], 'semi': ['error', 'never'], + 'indent': ['error', 'tab', { 'SwitchCase': 1 }], 'vue/v-on-event-hyphenation': ['warn', 'never', {'autofix': true}], 'vue/multi-word-component-names': 'off',