awesome_lints 2.2.0
awesome_lints: ^2.2.0 copied to clipboard
Comprehensive custom lint rules for Dart and Flutter.
example/awesome_lints_example.dart
// This package provides custom lint rules for Flutter applications.
// To use these lints, add them to your analysis_options.yaml file:
//
// analyzer:
// plugins:
// - custom_lint
//
// custom_lint:
// rules:
// - avoid_single_child_column_or_row
//
// Then run: dart run custom_lint
void main() {
print('awesome_lints package - see README.md for usage instructions');
}