mirror of
https://github.com/github/codeql.git
synced 2026-02-15 14:33:40 +01:00
14 lines
375 B
Plaintext
14 lines
375 B
Plaintext
/**
|
|
* @name Successfully included header files
|
|
* @description A count of all succeeded includes, grouped by filename.
|
|
* @kind metric
|
|
* @tags summary telemetry
|
|
* @id cpp/telemetry/succeeded-includes
|
|
*/
|
|
|
|
import Metrics
|
|
|
|
from CppMetrics::SucceededIncludeCount m
|
|
where RankMetric<CppMetrics::SucceededIncludeCount>::getRank(m) <= 50
|
|
select m.getIncludeText(), m.getValue()
|