Skip to content

Commit

Permalink
lint: Fix prettier and eslint conflict.
Browse files Browse the repository at this point in the history
The two systems conflicted over indentations in
switch case.
  • Loading branch information
kuv2707 committed Jun 2, 2024
1 parent ef2dc47 commit a4574ab
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion backend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
},
"plugins": ["@typescript-eslint"],
"rules": {
"indent": ["error", 4],
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
Expand Down

0 comments on commit a4574ab

Please sign in to comment.