diff options
| author | stonedDiscord <Tukz@gmx.de> | 2025-08-12 12:49:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-12 12:49:52 +0200 |
| commit | 8e46e304f4defc7f9f4eb01922812b28a8585307 (patch) | |
| tree | 52676c7ffe26798fed47a29119d9ad8487897144 | |
| parent | d734e6ae0f29c4eef1f3e6435d063fe0fe75e3ce (diff) | |
| parent | da8d864cb28d9a08f136b44764975c772f2730a6 (diff) | |
Merge pull request #265 from OmniTroid/eslint-indent
Set ESLint indent to 2 spaces
| -rw-r--r-- | .eslintrc.js | 2 |
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 }], }, }; |
