mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +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
389 B
Plaintext
15 lines
389 B
Plaintext
/**
|
|
* @name Capture source models
|
|
* @description Finds APIs that act as sources as they expose already known sources.
|
|
* @kind diagnostic
|
|
* @id cpp/utils/modelgenerator/source-models
|
|
* @tags modelgenerator
|
|
*/
|
|
|
|
import internal.CaptureModels
|
|
import SourceModels
|
|
|
|
from DataFlowSourceTargetApi api, string source
|
|
where source = Heuristic::captureSource(api)
|
|
select source order by source
|