Make assert-pure.ql ignore all /vscode/ directories

This commit is contained in:
Robert
2023-05-31 10:59:50 +01:00
parent 81fb1264e4
commit b8b378ffd4

View File

@@ -19,7 +19,7 @@ class PureFile extends File {
this.getRelativePath().regexpMatch(".*/src/pure/.*") or
this.getRelativePath().regexpMatch(".*/src/common/.*")
) and
not this.getRelativePath().regexpMatch(".*/src/common/vscode/.*")
not this.getRelativePath().regexpMatch(".*/vscode/.*")
}
}