Skip to content

Commit

Permalink
fix: no-unused-vars off로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperdad committed Jul 10, 2024
1 parent 30e5947 commit 6e3b320
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const jsConfig = {
curly: "error",
quotes: ["error", "double"],
"comma-style": ["error", "last"],
"no-unused-vars": ["warn", { varsIgnorePattern: "^React$" }],
"no-unused-vars": ["off", { varsIgnorePattern: "^React$" }],
"no-console": "warn",
"no-extra-semi": "error",
"no-unused-expressions": "error",
Expand Down Expand Up @@ -65,7 +65,7 @@ const jsConfig = {
"no-restricted-globals": "error",
"no-return-assign": "warn",
"@typescript-eslint/no-explicit-any": "off", // any 허용
"@typescript-eslint/no-unused-vars": ["warn", { varsIgnorePattern: "^React$" }], // 'React' 사용 안해도 경고하지 않도록 설정
"@typescript-eslint/no-unused-vars": ["off", { varsIgnorePattern: "^React$" }], // 'React' 사용 안해도 경고하지 않도록 설정
},
settings: {
react: {
Expand Down

0 comments on commit 6e3b320

Please sign in to comment.