removed_lint_use
'{0}' was removed in Dart '{1}'
Description
#The analyzer produces this diagnostic when a lint that has been removed is used in an analysis options file. Because the lint has been removed, the reference to it (such as enabling it) will have no effect.
Example
#Assuming that the lint removed_lint
has been removed, the following options file produces this diagnostic:
yaml
linter:
rules:
- always_put_required_named_parameters_first
- removed_lint
Common fixes
#Remove the reference to the lint code:
yaml
linter:
rules:
- always_put_required_named_parameters_first
Was this page's content helpful?
Thank you for your feedback!
Provide details Thank you for your feedback! Please let us know what we can do to improve.
Provide details Unless stated otherwise, the documentation on this site reflects Dart 3.9.0. Page last updated on 2025-08-25. View source or report an issue.