solid_lints 0.0.12 solid_lints: ^0.0.12 copied to clipboard
Lints for Dart and Flutter based on software industry standards and best practices.
example/lib/solid_lints_example.dart
void main() {
sum(1, 1, 1, 2);
}
/// Sum of two numbers. Standard dart overflow rules apply.
int sum(int p1, int p2, int p3, int p4) => p1 + p2 + p3 + p4;