Skip to content

Commit

Permalink
chore: eslint 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2980 committed May 19, 2024
1 parent ae94e0b commit 81f3e70
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@
{
"files": ["**/?(*.)+(spec|test).[jt]s?(x)"],
"plugins": ["jest", "jest-dom", "testing-library"],
"extends": [
"plugin:jest/recommended",
"plugin:jest-dom/recommended",
"plugin:testing-library/react"
]
"extends": ["plugin:jest/recommended", "plugin:jest-dom/recommended", "plugin:testing-library/react"]
},
{
"files": ["**/?(*.)+(stories).[jt]s?(x)"],
Expand All @@ -34,7 +30,8 @@
"rules": {
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"testing-library/no-await-sync-events": ["off", { "eventModules": ["fire", "user"] }]
"testing-library/no-await-sync-events": ["off", { "eventModules": ["fire", "user"] }],
"react/react-in-jsx-scope": "off"
},
"settings": {
"react": {
Expand Down

0 comments on commit 81f3e70

Please sign in to comment.