mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
17 lines
411 B
Plaintext
17 lines
411 B
Plaintext
/**
|
|
* @name Statement nesting depth
|
|
* @description The maximum nesting depth of statements in a function.
|
|
* @kind treemap
|
|
* @id py/statement-nesting-depth-per-function
|
|
* @treemap.warnOn highValues
|
|
* @metricType callable
|
|
* @metricAggregate avg max
|
|
* @tags maintainability
|
|
* complexity
|
|
*/
|
|
|
|
import python
|
|
|
|
from FunctionMetrics func
|
|
select func, func.getStatementNestingDepth() as n order by n desc
|