luci/.github/codeql/codeql-config.yml
Paul Donald 198a2dd20e house-keeping: Enable Code Query Language (CodeQL) scanning
Code quality scanning (for JavaScript, JSON, HTML) for pushes and PRs
to master.

A repo scan takes roughly 4 minutes.

Signed-off-by: Paul Donald <newtwen@gmail.com>
2024-01-31 23:38:41 +01:00

34 lines
873 B
YAML

name: "CodeQL config"
# Paths example; these are completely different from the same keywords when used for on.<push|pull_request>.paths in a workflow
# Restrict code scanning to files in specific directories by adding a paths array
paths:
- '**/*.js'
- '**/*.json'
- '**/*.htm*'
# # Exclude files in specific directories from analysis by adding a paths-ignore array
# paths-ignore:
# - src/node_modules
# - '**/*.test.js'
# # Scanner packs example
# packs:
# # Use these packs for JavaScript and TypeScript analysis
# javascript:
# - scope/js-pack1
# - scope/js-pack2
# # Query filters example
# query-filters:
# - exclude:
# problem.severity:
# - warning
# - recommendation
# # Query filters example 2
# query-filters:
# - exclude:
# id: js/redundant-assignment
# - exclude:
# id: js/useless-assignment-to-local