mirror of
https://github.com/github/codeql.git
synced 2026-02-12 13:11:20 +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
435 B
Plaintext
15 lines
435 B
Plaintext
/**
|
|
* @name Capture content based summary models
|
|
* @description Finds applicable content based summary models to be used by other queries.
|
|
* @kind diagnostic
|
|
* @id cpp/utils/modelgenerator/contentbased-summary-models
|
|
* @tags modelgenerator
|
|
*/
|
|
|
|
import internal.CaptureModels
|
|
import SummaryModels
|
|
|
|
from DataFlowSummaryTargetApi api, string flow
|
|
where flow = ContentSensitive::captureFlow(api, _, _, _, _)
|
|
select flow order by flow
|