Skip to content

Commit

Permalink
Fix(eslint-config-base): Allow mjs and cjs extension for ESlint c…
Browse files Browse the repository at this point in the history
…onfig
  • Loading branch information
literat committed Aug 16, 2024
1 parent 0ebe6f2 commit 472303c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-config-base/rules/imports.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ module.exports = {
'**/gulpfile.{js,ts}', // gulp config
'**/gulpfile.*.{js,ts}', // gulp config
'**/Gruntfile{,.js}', // grunt config
'**/.eslintrc.js', // eslint config
'**/.eslintrc.{,m,c}js', // eslint config
'**/.prettierrc.js', // prettier config
'**/*.config.{js,ts}', // other config
'**/*.config.*.js,ts}', // other config
'**/*.conf.{js,ts}', // other conf
'**/*.conf.*.js,ts}', // other conf
'**/*.conf.*.{js,ts}', // other conf
],
optionalDependencies: false,
},
Expand Down

0 comments on commit 472303c

Please sign in to comment.