mirror of
https://github.com/github/codeql.git
synced 2026-02-23 18:33:42 +01:00
Fixed 73 .ql query files where the @name metadata contained an ending period. This ensures consistency with the CodeQL query metadata style guidelines.
15 lines
364 B
Plaintext
15 lines
364 B
Plaintext
/**
|
|
* @name Capture neutral models
|
|
* @description Finds neutral models to be used by other queries.
|
|
* @kind diagnostic
|
|
* @id cpp/utils/modelgenerator/neutral-models
|
|
* @tags modelgenerator
|
|
*/
|
|
|
|
import internal.CaptureModels
|
|
import SummaryModels
|
|
|
|
from DataFlowSummaryTargetApi api, string noflow
|
|
where noflow = captureNeutral(api)
|
|
select noflow order by noflow
|