Skip to content

Commit

Permalink
feat: only accept 'regular' dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Dec 15, 2023
1 parent f89e231 commit 5cb063b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,16 @@ module.exports = {
{
files: ["src/**"],
rules: {
"import/no-extraneous-dependencies": ["error", { includeTypes: false }],
"import/no-extraneous-dependencies": [
"error",
{
includeTypes: false,
devDependencies: false,
peerDependencies: false,
bundledDependencies: false,
optionalDependencies: false,
},
],
},
},
],
Expand Down

0 comments on commit 5cb063b

Please sign in to comment.