mirror of
https://github.com/github/codeql.git
synced 2025-12-26 13:46:31 +01:00
7 lines
218 B
Plaintext
7 lines
218 B
Plaintext
|
|
import python
|
|
|
|
from Module m, ModuleMetrics mm
|
|
where mm = m.getMetrics() and mm.getNumberOfLines() > 0
|
|
select m, 100.0 * ((float)mm.getNumberOfLinesOfCode() / (float)mm.getNumberOfLines()) as ratio
|
|
order by ratio desc |