Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.

Commit 1c7fea7

Browse files
committed
refactor(setPlugin): ignore [cfx] directory
1 parent b7b6875 commit 1c7fea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/setPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default async function setPlugin(enable: boolean) {
4343
// Drastically improves time to load workspace
4444
const ignoreDir: string[] = config.get('workspace.ignoreDir') || [];
4545

46-
['.vscode', '.git', '.github', 'node_modules'].forEach((item) => {
46+
['.vscode', '.git', '.github', 'node_modules', '\\[cfx\\]'].forEach((item) => {
4747
if (!ignoreDir.includes(item)) {
4848
ignoreDir.push(item);
4949
}

0 commit comments

Comments
 (0)