Skip to content

Commit 764336a

Browse files
committed
Disable slow CodeQL queries
See issue 10937 on github.com/github/codeql.
1 parent 0e224e4 commit 764336a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/codeql/codeql-configuration.yml

+26
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,29 @@ name : CodeQL Configuration
22

33
paths:
44
- './src'
5+
6+
# These queries appear to time out after the module conversion.
7+
# https://github.com/github/codeql/issues/10937
8+
query-filters:
9+
- exclude:
10+
id: js/path-injection # TaintedPath.ql
11+
- exclude:
12+
id: js/command-line-injection # CommandInjection.ql
13+
- exclude:
14+
id: js/code-injection # CodeInjection.ql
15+
- exclude:
16+
id: js/bad-code-sanitization # ImproperCodeSanitization.ql
17+
- exclude:
18+
id: js/unsafe-dynamic-method-access # UnsafeDynamicMethodAccess.ql
19+
- exclude:
20+
id: js/clear-text-logging # CleartextLogging.ql
21+
- exclude:
22+
id: js/regex-injection # RegExpInjection.ql
23+
- exclude:
24+
id: js/unvalidated-dynamic-method-call # UnvalidatedDynamicMethodCall.ql
25+
- exclude:
26+
id: js/insecure-download # InsecureDownload.ql
27+
- exclude:
28+
id: js/prototype-polluting-assignment # PrototypePollutingAssignment.ql
29+
- exclude:
30+
id: js/request-forgery # RequestForgery.ql

0 commit comments

Comments
 (0)