Skip to content

Commit

Permalink
fix(eslint-config): disable import rules for *.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Oct 11, 2022
1 parent 789d578 commit 92c80dc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/eslint-config/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ module.exports = {
},
overrides: [
{
files: 'rollup.config.js',
files: '*.config.js',
rules: {
'import/no-default-export': 'off'
'import/no-default-export': 'off',
'import/no-anonymous-default-export': 'off'
}
}
]
Expand Down

0 comments on commit 92c80dc

Please sign in to comment.