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