From da8d864cb28d9a08f136b44764975c772f2730a6 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Mon, 14 Jul 2025 22:33:37 +0200 Subject: Set ESLint indent to 2 spaces The whole codebase is formatted with 2 space indentation so update .eslint.js to reflect that. --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 5f96bbc..99e93ae 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -15,7 +15,7 @@ module.exports = { }, plugins: ['@typescript-eslint'], rules: { - "indent": ["warn", 4, { "SwitchCase": 1 }], + "indent": ["warn", 2, { "SwitchCase": 1 }], "no-plusplus": ["error", { "allowForLoopAfterthoughts": true }], }, }; -- cgit