coca_lints 1.0.1
coca_lints: ^1.0.1 copied to clipboard
Strict linting rules for Dart to enhance code quality and readability.
// To use coca_lints:
// 1. Add coca_lints to dev_dependencies in pubspec.yaml:
// dev_dependencies:
// coca_lints: ^1.0.0
//
// Or install directly via command line:
// - For Dart projects: dart pub add dev:coca_lints
// - For Flutter projects: flutter pub add dev:coca_lints
//
// 2. Create an analysis_options.yaml file in your project root:
// include: package:coca_lints/analysis_options.yaml
//
// 3. Run `dart pub get` to install dependencies
void main() {
// ignore: avoid_print
print('Hello, World!');
}