solid_lints 0.0.5 solid_lints: ^0.0.5 copied to clipboard
Lints for Dart and Flutter based on software industry standards and best practices.
example/lib/solid_lints_example.dart
void main() {
tooManyParams(1, 2, 3, 4, 5);
}
/// Documentation
///
int tooManyParams(int p1, int p2, int p3, int p4, int p5) =>
p1 + p2 + p3 + p4 + p5;