mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +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
366 B
Plaintext
15 lines
366 B
Plaintext
/**
|
|
* @name Capture summary models
|
|
* @description Finds applicable summary models to be used by other queries.
|
|
* @kind diagnostic
|
|
* @id cs/utils/modelgenerator/summary-models
|
|
* @tags modelgenerator
|
|
*/
|
|
|
|
import internal.CaptureModels
|
|
import SummaryModels
|
|
|
|
from DataFlowSummaryTargetApi api, string flow
|
|
where flow = captureFlow(api, _)
|
|
select flow order by flow
|