strictLengthGatedRules top-level constant

Set<String> const strictLengthGatedRules

Length-family heuristics that plain --strict does NOT promote to errors — they need the explicit --strict-length opt-in.

Both are soft conventions, not hard gates: length_ratio is noisy, and width_budget is a nudge to tighten a slightly-too-long label, not a reason to fail CI. The report formatter reads this same set so the display tag matches the exit-code logic.

Implementation

const Set<String> strictLengthGatedRules = {'length_ratio', 'width_budget'};