Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 485 Bytes

template-cyclomatic-complexity.md

File metadata and controls

13 lines (7 loc) · 485 Bytes

Pattern: Template cyclomatic complexity is too high

Issue: -

Description

Checks cyclomatic complexity against a specified limit. It is a quantitative measure of the number of linearly independent paths through a program’s source code.

Cyclomatic complexity over some threshold indicates that the logic should be moved outside the template.

Further Reading