Skip to content

Files

Latest commit

 

History

History
15 lines (9 loc) · 488 Bytes

Generic.Metrics.CyclomaticComplexity.md

File metadata and controls

15 lines (9 loc) · 488 Bytes

Pattern: High cyclomatic complexity

Issue: -

Description

Checks the cyclomatic complexity (McCabe) for functions.

The cyclomatic complexity (also called McCabe code metrics) indicates the complexity within a function by counting the different paths the function includes.

Further Reading