solid_lints 0.0.8 solid_lints: ^0.0.8 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);
}
/// Sum of two numbers. Standard dart overflow rules apply.
int sum(int p1, int p2) => p1 + p2;