C#: Use `cs/` prefix in all query IDs

This commit is contained in:
Tom Hvitved 2021-11-03 10:25:21 +01:00
Родитель e6145f04d2
Коммит 51f4f57617
9 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -1,7 +1,7 @@
/**
* @name Print AST
* @description Outputs a representation of the Abstract Syntax Tree.
* @id csharp/print-ast
* @id cs/print-ast
* @kind graph
*/

Просмотреть файл

@ -3,7 +3,7 @@
* @description This reports the external APIs that are used with untrusted data, along with how
* frequently the API is called, and how many unique sources of untrusted data flow
* to it.
* @id csharp/count-untrusted-data-external-api
* @id cs/count-untrusted-data-external-api
* @kind table
* @tags security external/cwe/cwe-20
*/

Просмотреть файл

@ -1,7 +1,7 @@
/**
* @name Untrusted data passed to external API
* @description Data provided remotely is used in this external API without sanitization, which could be a security risk.
* @id csharp/untrusted-data-to-external-api
* @id cs/untrusted-data-to-external-api
* @kind path-problem
* @precision low
* @problem.severity error

Просмотреть файл

@ -2,7 +2,7 @@
* @name IR Consistency Check
* @description Performs consistency checks on the Intermediate Representation. This query should have no results.
* @kind table
* @id csharp/ir-consistency-check
* @id cs/ir-consistency-check
*/
import implementation.raw.IRConsistency

Просмотреть файл

@ -1,7 +1,7 @@
/**
* @name Print IR
* @description Outputs a representation of the IR graph
* @id csharp/print-ir
* @id cs/print-ir
* @kind graph
*/

Просмотреть файл

@ -2,7 +2,7 @@
* @name Raw IR Consistency Check
* @description Performs consistency checks on the Intermediate Representation. This query should have no results.
* @kind table
* @id csharp/raw-ir-consistency-check
* @id cs/raw-ir-consistency-check
*/
import IRConsistency

Просмотреть файл

@ -1,7 +1,7 @@
/**
* @name Print Raw IR
* @description Outputs a representation of the Raw IR graph
* @id csharp/print-raw-ir
* @id cs/print-raw-ir
* @kind graph
*/

Просмотреть файл

@ -2,7 +2,7 @@
* @name Unaliased SSA Consistency Check
* @description Performs consistency checks on the SSA construction. This query should have no results.
* @kind table
* @id csharp/unaliased-ssa-consistency-check
* @id cs/unaliased-ssa-consistency-check
*/
import SSAConsistency

Просмотреть файл

@ -2,7 +2,7 @@
* @name Print AST
* @description Outputs a representation of a file's Abstract Syntax Tree. This
* query is used by the VS Code extension.
* @id csharp/print-ast
* @id cs/print-ast
* @kind graph
* @tags ide-contextual-queries/print-ast
*/