restrict the queries that are run by default

This commit is contained in:
Esben Sparre Andreasen
2021-10-14 08:12:04 +02:00
parent 98b359bd9a
commit 0ff2de9b5e
3 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
- description: All Code Scanning queries for QL
- queries: .
- include:
kind:
- problem
- path-problem
- alert
- path-alert

View File

@@ -6,3 +6,13 @@
- path-problem
- alert
- path-alert
precision:
- high
- very-high
problem.severity:
- error
- warning
- exclude:
deprecated: //
- exclude:
query path: /^experimental\/.*/

View File

@@ -2,7 +2,7 @@
* @name Using implicit `this`
* @description Writing member predicate calls with an implicit `this` can be confusing
* @kind problem
* @problem.severity warning
* @problem.severity recommendation
* @precision very-high
* @id ql/implicit-this
* @tags maintainability