Adds checking for trailling commas on the project (#670)

* Testing a new linter option for trailling commas

* Checking trailling commas on linter
This commit is contained in:
Erick
2021-02-18 11:31:45 -03:00
committed by GitHub
parent e712d423dd
commit 19ff80a0eb
17 changed files with 254 additions and 186 deletions

View File

@ -40,10 +40,11 @@ class MyTextBox extends TextBoxComponent {
height - margin.vertical,
);
c.drawRect(
innerRect,
Paint()
..color = BasicPalette.white.color
..style = PaintingStyle.stroke);
innerRect,
Paint()
..color = BasicPalette.white.color
..style = PaintingStyle.stroke,
);
}
}