proposal: unnecesary_duplicate_value
#59530
Labels
area-devexp
For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.
devexp-linter
Issues with the analyzer's support for the linter package
linter-lint-proposal
linter-status-pending
P3
A lower priority bug or feature request
type-enhancement
A request for a change that isn't a bug
unnecesary_duplicate_value
Description
Remove unnecessary
||
/&&
values to avoid redundancy.Details
When the
||
or&&
operator is used with identical values, leading to redundant code, removing these unnecessary duplicates improves code clarity and reduces potential confusion. By enforcing this lint, developers are encouraged to write more concise and maintainable switch cases, eliminating redundancy without changing the logic of the program. This lint is particularly useful in ensuring that codebases remain clean and that unnecessary conditions do not obscure the intended logic.Kind
This lint enforces style advice by ensuring more concise and clear code, eliminating redundant conditions in switch cases.
Bad Examples
Good Examples
Discussion
Inspired by #59529 for cases of big or expressions where the values might not be exactly side by side and can be hard to spot. Usually, these cases appear when you are doing code refactoring so I believe this could help mainly in those cases.
This could of course have some false negatives but I believe it is best to have some kind of warning than to have none.
If this is ever implemented, I believe this should be added to
Effective Dart
.Discussion checklist
The text was updated successfully, but these errors were encountered: