Skip to content

Commit

Permalink
[#10] import/no-extraneous-dependencies 관련 세팅 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
intersoom committed Aug 1, 2023
1 parent be0adce commit c03a63b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@
},
"plugins": ["react", "react-hooks", "prettier"],
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"projectDependencies": false,
"devDependencies": true,
"optionalDependencies": false,
"peerDependencies": false
}
],
"react/react-in-jsx-scope": 0,
"react/function-component-definition": [2, { "namedComponents": "arrow-function" }],
"react/prefer-stateless-function": 0,
Expand Down

0 comments on commit c03a63b

Please sign in to comment.