Skip to content

Commit

Permalink
fix: allow dev dependencies in c/mjs files
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno authored Nov 29, 2022
1 parent c2742d5 commit 5378b59
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.js', '**/*.spec.js', 'build/**.js'] },
{ devDependencies: ['**/*.test.c?m?js', '**/*.spec.c?m?js', 'build/**.c?m?js'] },
],
'no-null/no-null': 2,
quotes: [
Expand Down

0 comments on commit 5378b59

Please sign in to comment.