Skip to content

Commit 8c7b294

Browse files
committed
add node_modules to eslint ignore patterns
so I don't get a million errors in helix when I look at a lib's types
1 parent 90e78db commit 8c7b294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ module.exports = {
7575
'react/react-in-jsx-scope': 'off',
7676
'react/prop-types': 'off',
7777
},
78-
ignorePatterns: ['dist/'],
78+
ignorePatterns: ['dist/', 'node_modules/'],
7979
overrides: [
8080
{
8181
// default export is needed in config files

0 commit comments

Comments
 (0)