Skip to content

Commit 3192bd1

Browse files
committed
fix: don't ignore parent dirs, to allow for negation globs
1 parent f9603ae commit 3192bd1

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ const config = {
1313
],
1414
ignorePatterns: [
1515
'!.eslintrc.js',
16-
'node_modules/',
17-
'coverage/',
18-
'bundle/',
19-
'public/',
20-
'vendor/',
21-
'dist/',
22-
'lib/',
23-
'out/'
16+
'node_modules/*',
17+
'coverage/*',
18+
'bundle/*',
19+
'public/*',
20+
'vendor/*',
21+
'dist/*',
22+
'lib/*',
23+
'out/*'
2424
],
2525
rules: {
2626
'eslint-comments/disable-enable-pair': ['error', { allowWholeFile: true }],

0 commit comments

Comments
 (0)