Skip to content

Commit

Permalink
fix: import/no-extraneous-dependencies globs (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
AyAyEm authored Nov 29, 2022
1 parent a32dd52 commit 4f50577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = {
'import/no-unresolved': 0,
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: ['**/*.test.c?m?js', '**/*.spec.c?m?js', 'build/**/*.c?m?js'] },
{ devDependencies: ['**/*.test.{js,cjs,mjs}', '**/*.spec.{js,cjs,mjs}', 'build/**/*.{js,cjs,mjs}'] },
],
'no-null/no-null': 2,
quotes: [
Expand Down

0 comments on commit 4f50577

Please sign in to comment.