Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
fix: Enforce indention in switch statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusbegby committed Jul 17, 2023
1 parent c6bf5d8 commit a4d5ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"ecmaVersion": "latest"
},
"rules": {
"indent": ["error", 4],
"indent": ["error", 4, { "SwitchCase": 1 }],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
Expand Down

0 comments on commit a4d5ab5

Please sign in to comment.