Skip to content

Commit 00bd7b7

Browse files
Merge pull request #2458 from github/robertbrignull/common-vscode
Make assert-pure.ql ignore all /vscode/ directories
2 parents d30e58b + b8b378f commit 00bd7b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/codeql/queries/assert-pure.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class PureFile extends File {
1919
this.getRelativePath().regexpMatch(".*/src/pure/.*") or
2020
this.getRelativePath().regexpMatch(".*/src/common/.*")
2121
) and
22-
not this.getRelativePath().regexpMatch(".*/src/common/vscode/.*")
22+
not this.getRelativePath().regexpMatch(".*/vscode/.*")
2323
}
2424
}
2525

0 commit comments

Comments
 (0)