Skip to content

Wildcard Suppressions

Latest

Choose a tag to compare

@RubenHalman RubenHalman released this 12 Nov 06:03
· 1 commit to main since this release

Inline Suppression

Exceptions now applied during rule execution — no post-processing.

  • generalSuppressions() eliminated → 30–50% faster on flows with high suppression.
  • Zero memory waste — suppressed ResultDetails are never created.
  • Average scan time reduced by 20-25%

Wildcard * Suppression

Suppress all results of a rule in a flow with *.

{
  "exceptions": {
    "MyFlow": {
      "MissingNullHandler": ["*"],
      "HardcodedId": ["Old_Lookup_1"]
    }
  }
}