Skip to content

Commit

Permalink
HOTFIX: esLint 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KimKyuHoi committed Nov 18, 2024
1 parent 6c60107 commit 5375029
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"react-hooks",
"jsx-a11y",
"import",
"prettier"
"prettier",
"simple-import-sort"
],
"settings": {
"import/resolver": {
Expand All @@ -50,8 +51,7 @@
"error",
{
"endOfLine": "auto",
"singleQuote": true,
"importOrder": "off"
"singleQuote": true
}
],
"react/react-in-jsx-scope": "off",
Expand All @@ -62,6 +62,10 @@
"prefer-arrow-callback": "off",
"max-len": "off",
"no-mixed-operators": "off",
"no-multiple-empty-lines": "off"
"no-multiple-empty-lines": "off",

// Import sorting rules
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
Expand Down
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5375029

Please sign in to comment.