We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c66e2ff commit c2b7119Copy full SHA for c2b7119
src/helpers.js
@@ -101,7 +101,7 @@ function findSolidityFiles() {
101
// Define the glob pattern for Solidity files
102
const solidityFilePattern = '**/*.sol';
103
// Exclude files from the node_modules and out dirs
104
- const excludePattern = '{**/node_modules/**,**/out/**}';
+ const excludePattern = '{**/node_modules/**,**/out/**,**/test}';
105
106
// Use findFiles to search for files matching the Solidity pattern, excluding undesired paths
107
return vscode.workspace.findFiles(solidityFilePattern, excludePattern)
0 commit comments