Skip to content

Commit

Permalink
add excemption to lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Feb 11, 2022
1 parent c13a0fa commit 3bf5571
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ module.exports = {
],
},
overrides: [
{
// this package depends on a lot of peerDependencies we don't want to specify, because npm would install them
files: ['**/addons/docs/**/*'],
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
{
// this package uses pre-bundling, dependencies will be bundled, and will be in devDepenencies
files: [
Expand Down

0 comments on commit 3bf5571

Please sign in to comment.