mirror of
https://github.com/github/codeql.git
synced 2025-12-25 05:06:34 +01:00
17 lines
378 B
Plaintext
17 lines
378 B
Plaintext
/**
|
|
* @name Incoming module dependencies
|
|
* @description The number of modules that depend on a module.
|
|
* @kind treemap
|
|
* @id py/afferent-coupling-per-file
|
|
* @treemap.warnOn highValues
|
|
* @metricType file
|
|
* @metricAggregate avg max
|
|
* @tags maintainability
|
|
* modularity
|
|
*/
|
|
|
|
import python
|
|
|
|
from ModuleMetrics m
|
|
select m, m.getAfferentCoupling() as n order by n desc
|