Skip to content

Commit 1eaddb5

Browse files
authored
fix: update configSearchPatternExclude default config to exclude 'vendor' directory (#696)
1 parent a6cae6e commit 1eaddb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/extension/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function getConfig(workspaceFolder?: WorkspaceFolder) {
3939

4040
const configSearchPatternExclude = get<string>(
4141
'configSearchPatternExclude',
42-
'{**/node_modules/**,**/.*/**,**/*.d.ts}',
42+
'{**/node_modules/**,**/vendor/**,**/.*/**,**/*.d.ts}',
4343
)!
4444

4545
const configSearchPatternInclude = get<string>(

0 commit comments

Comments
 (0)