mirror of
https://github.com/github/codeql.git
synced 2025-12-24 20:56:33 +01:00
19 lines
582 B
Plaintext
19 lines
582 B
Plaintext
/**
|
|
* @name Percentage of comments
|
|
* @description The percentage of lines in a file that contain comments. Note that docstrings are
|
|
* reported by a separate metric.
|
|
* @kind treemap
|
|
* @id py/comment-ratio-per-file
|
|
* @treemap.warnOn lowValues
|
|
* @metricType file
|
|
* @metricAggregate avg max
|
|
* @tags maintainability
|
|
* documentation
|
|
*/
|
|
import python
|
|
|
|
from Module m, ModuleMetrics mm
|
|
where mm = m.getMetrics() and mm.getNumberOfLines() > 0
|
|
select m, 100.0 * ((float)mm.getNumberOfLinesOfComments() / (float)mm.getNumberOfLines()) as ratio
|
|
order by ratio desc
|