impact property
The business impact of this rule's violations.
Override to specify the impact level for your rule:
- LintImpact.critical: Even 1-2 occurrences is serious (memory leaks, security)
- LintImpact.high: 10+ requires immediate action (accessibility, performance)
- LintImpact.medium: 100+ indicates tech debt (error handling, complexity)
- LintImpact.low: Large counts acceptable (style, naming conventions)
Default: LintImpact.medium
Implementation
@override
LintImpact get impact => LintImpact.medium;