aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2025-08-12 12:49:52 +0200
committerGitHub <noreply@github.com>2025-08-12 12:49:52 +0200
commit8e46e304f4defc7f9f4eb01922812b28a8585307 (patch)
tree52676c7ffe26798fed47a29119d9ad8487897144
parentd734e6ae0f29c4eef1f3e6435d063fe0fe75e3ce (diff)
parentda8d864cb28d9a08f136b44764975c772f2730a6 (diff)
Merge pull request #265 from OmniTroid/eslint-indent
Set ESLint indent to 2 spaces
-rw-r--r--.eslintrc.js2
1 files changed, 1 insertions, 1 deletions
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 }],
},
};