leobit_lints 0.2.0
leobit_lints: ^0.2.0 copied to clipboard
Lints for Dart and Flutter with some custom rules from Leobit
example/lib/example.dart
class Dog {
final String? _name;
const Dog(this._name);
String getName() {
// expect_lint: avoid_bang_operator
return _name!;
}
}