Skip to content

Custom Rule Messages

Choose a tag to compare

@RubenHalman RubenHalman released this 03 Jan 15:01
· 2282 commits to main since this release

Release Notes –Custom Rule Messages

You can now provide a custom message for any rule. This message overrides the default rule description in scan results, making violations clearer and easier for your team to understand.

Action tag: action-v3.2.0
CLI tag: v6.15.0
Core tag: core-v6.15.0
VSX Version: v2.10.0

Custom Rule Messages Feature

When specified, the custom message replaces the default rule description in scan results.

Example configuration:

{
  "rules": {
    "invalid-naming-convention": {
      "message": "Flow names should follow the team naming pattern for clarity."
    }
  }
}

Improved default severities

We’ve also updated the default severity levels and descriptions for several rules to better reflect their impact and help prioritize:

  • ActionCallsInLoop → now Warning (was Error)
  • ProcessBuilder → now Error (was Warning)
  • MissingMetadataDescription → now Warning (was Error)
  • RecordIdAsString → now Warning (was Error)