Skip to content

Commit 2a2b25e

Browse files
fix: exclude all node_modules files (#22)
1 parent 9ed89e0 commit 2a2b25e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/flatConfigEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ export class FlatConfigEditor implements vscode.CustomTextEditorProvider {
385385
workspaceRootUri.path + '/**/*',
386386
`!${workspaceRootUri.path}/.git`,
387387
`!${workspaceRootUri.path}/.vscode`,
388-
`!${workspaceRootUri.path}/node_modules`,
388+
`!${workspaceRootUri.path}/**/node_modules`,
389389
],
390390
{ dot: true }
391391
)

0 commit comments

Comments
 (0)