Skip to content

Commit c2b7119

Browse files
committed
chore:⚡ ignore test dir
1 parent c66e2ff commit c2b7119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function findSolidityFiles() {
101101
// Define the glob pattern for Solidity files
102102
const solidityFilePattern = '**/*.sol';
103103
// Exclude files from the node_modules and out dirs
104-
const excludePattern = '{**/node_modules/**,**/out/**}';
104+
const excludePattern = '{**/node_modules/**,**/out/**,**/test}';
105105

106106
// Use findFiles to search for files matching the Solidity pattern, excluding undesired paths
107107
return vscode.workspace.findFiles(solidityFilePattern, excludePattern)

0 commit comments

Comments
 (0)