mirror of
https://github.com/github/codeql.git
synced 2025-12-26 13:46:31 +01:00
13 lines
275 B
Plaintext
13 lines
275 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
|
|
select m, m.getValue() as c order by c desc
|