Skip to content

Commit 9738676

Browse files
authored
chore(eslint): simplify ignore-pattern (#4596)
to maintain windows compatibility after #4593
1 parent ed7c548 commit 9738676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default defineConfig(
4141
settings: {
4242
// eslint-plugin-import tries to parse all imported files included huge ones (e.g. 'typescript')
4343
// that leads to very poor performance so to fix that we disable all checks on external files.
44-
'import/ignore': ['/node_modules/'],
44+
'import/ignore': ['node_modules'],
4545
},
4646
rules: {
4747
//////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)