dart-lang / linter

Linter for Dart.
https://dart.dev/tools/linter-rules
BSD 3-Clause "New" or "Revised" License
628 stars 170 forks source link

`unnecessary_parenthesis` with binary comparison #4063

Open asashour opened 1 year ago

asashour commented 1 year ago
bool f(int x) => x == (10);

Expected: unnecessary_parenthesis to trigger.

Actual: No lint

bwilkerson commented 1 year ago

This has the potential for breaking existing users.