linter icon indicating copy to clipboard operation
linter copied to clipboard

unnecessary_parenthesis: missing case of item in a list

Open kevmoo opened this issue 4 years ago • 0 comments

final items = [
  1,
  2,
  3,
  (DateTime.now()), // LINT
];

Expect a lint on that last line – but don't get it!

kevmoo avatar Oct 27 '21 20:10 kevmoo