mirror of
https://github.com/github/codeql.git
synced 2026-02-13 13:41:08 +01:00
14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
/**
|
|
* @name Compiler errors
|
|
* @description A count of all compiler errors, grouped by error text.
|
|
* @kind metric
|
|
* @tags summary telemetry
|
|
* @id cpp/telemetry/compiler-errors
|
|
*/
|
|
|
|
import Metrics
|
|
|
|
from CppMetrics::ErrorCount m
|
|
where RankMetric<CppMetrics::ErrorCount>::getRank(m) <= 50
|
|
select m.toString(), m.getValue()
|