3.0.0 | Community Release
New Rule
Cyclomatic Complexity developed by Thomas McCabe Sr, is one of the gold standard for measuring how complex your code is, at it's core, it's counting how many independent paths can your code take. This simple metric has existed on tools such as PMD which can be used on Java & Apex, and as of today, also Flows.
| Rule | Description |
|---|---|
Cyclomatic Complexity (CyclomaticComplexity) |
The number of loops and decision rules, plus the number of decisions. Use a combination of 1) subflows and 2) breaking flows into multiple concise trigger ordered flows, to reduce the cyclomatic complexity within a single flow, ensuring maintainability and simplicity. |
Breaking Change
Full Changelog: v2.46.0...v3.0.0