Skip to content

Commit

Permalink
chore: disable linting rule in dev workspaces
Browse files Browse the repository at this point in the history
npm can't differentiate between workspaces that are devDependencies so
these workspaces have devDeps set to bypass audit warnings since they
are ultimately devDeps.  The linting rule won't work here
  • Loading branch information
wraithgar committed Jul 18, 2023
1 parent c1ffd6a commit 47be5ce
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/.eslintrc.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rules": {
"import/no-extraneous-dependencies": "off"
}
}
5 changes: 5 additions & 0 deletions mock-registry/.eslintrc.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rules": {
"import/no-extraneous-dependencies": "off"
}
}

0 comments on commit 47be5ce

Please sign in to comment.