xsoulspace_lints 0.0.14
xsoulspace_lints: ^0.0.14 copied to clipboard
Strict lint rules for Flutter and Dart.
Intro #
Hi!
This is a set of rules which I use for my personal and commercial projects.
Usually, I review these rules once a year and update them based on the latest Flutter and Dart releases.
Hope this helps! :)
Available rules: #
app.yaml
- useful for developing application or its parts.library.yaml
- useful for monorepos.public_library.yaml
- the purpose to use this lint if you developing a library which will be published to pub.dev.
Usage: #
- Add dependecies for pubspec:
dev_dependencies:
lints: [latest_version]
xsoulspace_lints: [latest_version]
copied to clipboard
- Then place in the
analysis_options.yaml
include: package:xsoulspace_lints/[filename].yaml
copied to clipboard
For example:
include: package:xsoulspace_lints/app.yaml
copied to clipboard