Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/src/rules/iterable_contains_unrelated_type.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ class IterableContainsUnrelatedType extends LintRule {
description: _desc,
details: _details,
group: Group.errors,
state: State.deprecated(),
state:
State.deprecated(replacedBy: 'collection_methods_unrelated_type'),
);

@override
Expand Down
3 changes: 2 additions & 1 deletion lib/src/rules/list_remove_unrelated_type.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ class ListRemoveUnrelatedType extends LintRule {
description: _desc,
details: _details,
group: Group.errors,
state: State.deprecated(),
state:
State.deprecated(replacedBy: 'collection_methods_unrelated_type'),
);

@override
Expand Down