Skip to content

3.0.0 | Community Release

Choose a tag to compare

@junners junners released this 17 Feb 02:06
· 105 commits to master since this 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

  • BREAKING: deprecate old source path option and replace with --files by @junners in #146

Full Changelog: v2.46.0...v3.0.0