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