mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
17 lines
380 B
Plaintext
17 lines
380 B
Plaintext
/**
|
|
* @name Outgoing module dependencies
|
|
* @description The number of modules that this module depends upon.
|
|
* @kind treemap
|
|
* @id py/efferent-coupling-per-file
|
|
* @treemap.warnOn highValues
|
|
* @metricType file
|
|
* @metricAggregate avg max
|
|
* @tags testability
|
|
* modularity
|
|
*/
|
|
|
|
import python
|
|
|
|
from ModuleMetrics m
|
|
select m, m.getEfferentCoupling() as n order by n desc
|