0 purchases
words
The words package comprises two sets of
lints which help in development of consistent, predictable
applications.
Two sets of linter rules are used:
Core lints: Lints applicable to all Dart code across every platform.
Flutter lints: Core lints + additional lints only applicable to the
Flutter framework.
To learn more about lints, visit the official Dart
lints package repository.
How to enable these lints #
Add the words package as a developer dependency using the terminal:
dart pub add --dev words
copied to clipboard
Create an analysis_options.yaml file at the root of the repository (next to
pubspec.yaml).
In a Flutter project you should add:
include: package:words/flutter.yaml
copied to clipboard
Otherwise:
include: package:words/core.yaml
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.