A collection of Lint rules for Dart and Flutter projects. Like Python flake8, but for Dart!
- Production ready
- Strict but not annoying
- Improve your code quality
- Follow the Effective Dart Style
With Dart, install via dart pub:
dart pub add flakesWith Flutter, install via flutter pub:
flutter pub add flakesOr manually add to your pubspec.yaml:
dev_dependencies:
flakes: ^1.0.0And run dart pub get or flutter pub get.
To use Flakes analysis, include the flakes.yaml file in your analysis_options.yaml:
include: package:flakes/flakes.yamlYou can also customize the rules or add your own:
include: package:flakes/flakes.yaml
linter:
rules:
# Customizing rules
avoid_print: false
# Adding rules
public_member_api_docs: trueTo take advantage of Flakes in your CI, you can use dart fix to fix the lints automatically:
dart fix --dry-run # See what needs to be changed
dart fix --apply # Apply the changesAnd if you're using VSCode, you can use the Dart Code extension to automatically fix the lints on save:
{
"[dart]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
}
}
}Note that not all lints can be fixed automatically, so you'll still need to fix some manually.
This package is inspired by other lint packages, like very_good_analysis and lint.
Developed with 💙 by Robson Silva.
