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 03f3535 commit 18165cbCopy full SHA for 18165cb
ql/ql/src/queries/style/MissingSecuritySeverity.ql
@@ -24,6 +24,6 @@ predicate missingSecuritySeverity(QLDoc doc) {
24
from TopLevel t
25
where
26
t.getLocation().getFile().getBaseName().matches("%.ql") and
27
- not t.getLocation().getFile().getRelativePath().matches("%/experimental/%") and
+ not t.getLocation().getFile().getRelativePath().matches(["%/experimental/%", "%/examples/%"]) and
28
missingSecuritySeverity(t.getQLDoc())
29
select t, "This query file is missing a `@security-severity` tag."
0 commit comments