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:
linter:
rules:
- always_put_required_named_parameters_first
- removed_lint
Common fixes
#Remove the reference to the lint code:
linter:
rules:
- always_put_required_named_parameters_first
Unless stated otherwise, the documentation on this site reflects Dart 3.9.2. Page last updated on 2025-9-1. View source or report an issue.