This package have moved to bloc monorepo and will be maintained there.
Please refer to the Bloc monorepo for the latest updates.
Custom linter rules for Flutter projects using the bloc library. This package is based on dart_custom_lint package.
Add the following to your pubspec.yaml
file:
dev_dependencies:
custom_lint: ^0.7.0
bloc_lint: ^0.1.0
Add the following to your analysis_options.yaml
file:
analyzer:
plugins:
- custom_lint
That's it! After running pub get (and possibly restarting their IDE), users should now see our custom lints in their
Dart files. You can also run dart pub custom_lint
to run the linter in your CLI.
The example folder contains a dart project to unit test the rules. (see custom_lint readme for more info)