Skip to content

Commit

Permalink
Disable slow CodeQL queries
Browse files Browse the repository at this point in the history
See issue 10937 on github.com/github/codeql.
  • Loading branch information
jakebailey committed Nov 2, 2022
1 parent 63a4306 commit 1c89b38
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/codeql/codeql-configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,29 @@ paths:
- Gulpfile.mjs
paths-ignore:
- src/lib

# These queries appear to time out after the module conversion.
# https://github.com/github/codeql/issues/10937
query-filters:
- exclude:
id: js/path-injection # TaintedPath.ql
- exclude:
id: js/command-line-injection # CommandInjection.ql
- exclude:
id: js/code-injection # CodeInjection.ql
- exclude:
id: js/bad-code-sanitization # ImproperCodeSanitization.ql
- exclude:
id: js/unsafe-dynamic-method-access # UnsafeDynamicMethodAccess.ql
- exclude:
id: js/clear-text-logging # CleartextLogging.ql
- exclude:
id: js/regex-injection # RegExpInjection.ql
- exclude:
id: js/unvalidated-dynamic-method-call # UnvalidatedDynamicMethodCall.ql
- exclude:
id: js/insecure-download # InsecureDownload.ql
- exclude:
id: js/prototype-polluting-assignment # PrototypePollutingAssignment.ql
- exclude:
id: js/request-forgery # RequestForgery.ql

0 comments on commit 1c89b38

Please sign in to comment.