Skip to content

Commit

Permalink
Merge pull request #185 from github/allow-config-files
Browse files Browse the repository at this point in the history
Allow files to be named _.config.js
  • Loading branch information
koddsson committed Jan 24, 2022
2 parents 86410d4 + 28b7618 commit d032563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configs/recommended.js
Expand Up @@ -18,7 +18,7 @@ module.exports = {
'eslint-comments/no-unused-disable': 'error',
'eslint-comments/no-unused-enable': 'error',
'eslint-comments/no-use': ['error', {allow: ['eslint', 'eslint-disable-next-line', 'eslint-env', 'globals']}],
'filenames/match-regex': ['error', '^[a-z0-9-]+(.d)?$'],
'filenames/match-regex': ['error', '^[a-z0-9-]+(.d|.config)?$'],
'func-style': ['error', 'declaration', {allowArrowFunctions: true}],
'github/array-foreach': 'error',
'github/no-implicit-buggy-globals': 'error',
Expand Down

0 comments on commit d032563

Please sign in to comment.