Skip to content

Commit

Permalink
fix: eslint indent 옵션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperdad committed Jul 15, 2024
1 parent 33369ca commit 0b8ab28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const jsConfig = {
"no-console": "warn",
"no-extra-semi": "error",
"no-unused-expressions": "error",
indent: ["error", 2, { SwitchCase: 1, ignoredNodes: ["PropertyDefinition"] }],
indent: "off", // prettier 충돌로 인해 off
semi: ["warn", "always"],
"no-undef": "error",
"no-trailing-spaces": "warn",
Expand Down

0 comments on commit 0b8ab28

Please sign in to comment.