lints
v6.1.0Official Dart lint rules. Defines the 'core' and 'recommended' set of lints suggested by the Dart team.
Архив пакета: https://pubdev.letsnova.ru/api/archives/lints/6.1.0.tar.gz
dart pub add lintsREADME
Official Dart lint rules
The Dart linter is a static analyzer for identifying possible problems in your
Dart source code. More than a hundred linter rules are available,
checking anything from potential typing issues, coding style, and formatting.
This package - package:lints - contains the lint settings recommended by the
Dart team.
Lint sets
This package includes two sets of lints:
-
Core lints: Lints that help identify critical issues that are likely to lead to problems when running or consuming Dart code. All code should pass these lints.
-
Recommended lints: Lints that help identify additional issues that may lead to problems when running or consuming Dart code, and lints that enforce writing Dart using a single, idiomatic style and format. All code is encouraged to pass these lints. The recommended lints include all the core lints.
Additionally, a third lint set -
package:flutter_lints - extends the
recommended set with additional recommended Flutter-specific lints.
The Dart team will likely not provide recommendations past the core and
recommended sets (e.g., a strict rule set). However, there are many such
rule sets in the ecosystem (available at pub.dev).
Rule set authors: consider adding the lints topic to your pubspec to allow
easier discovery (e.g.,
pub.dev/packages?q=topic:lints).
For more information about topics, visit
dart.dev/tools/pub/pubspec#topics.
Where these lints are used
When creating a new Dart project using the dart create command,
the recommended set of lints from package:lints is enabled by default.
When uploading a package to the pub.dev package repository, packages are awarded pub points based on how many of the 'core' lints pass.
Enabling the lints
For new apps created with dart create the recommended set of lints are
enabled by default.
For existing apps or packages, you can enable these lints via:
-
In a terminal, located at the root of your package, run this command:
dart pub add dev:lints -
Create a new
analysis_options.yamlfile, next to the pubspec, that includes the lints package:include: package:lints/recommended.yamlor:
include: package:lints/core.yaml
Upgrading to the latest lints
To upgrade to the latest version of the lint set, run:
dart pub add dev:lints
Customizing the predefined lint sets
For details on customizing static analysis above and beyond the predefined lint sets, check out Customizing static analysis.
Evolving the lint sets
The Dart language changes and the ecosystem continues to develop new best practices, so the lint sets must be periodically updated to reflect the best way we know to write Dart code. The process we use is:
-
Anyone can file an issue to discuss a potential change to a lint set (i.e., adding or removing a lint from one or both sets; if you're proposing an entirely new lint, the place to suggest that is at the sdk repo). Feedback is welcome from any Dart user.
-
Periodically, a group of Dart and Flutter team members meet to review the suggestions and decide what to adopt.
-
The lists are updated and a new version of the package is published.
Lint set contents
See rules.md for a list of rules that make up the core and recommended rule sets.
История изменений
6.1.0
recommended:- Run
dart formatwith the new style.
6.0.0
core:recommended:- Require Dart 3.8.
5.1.1
- Updated the SDK lower bound to 3.6.
- Move to
dart-lang/coremonorepo.
5.1.0
core:- Updated the SDK lower bound to 3.6 (dev).
5.0.0
recommended:- Updated the SDK lower-bound to 3.5.
4.0.0
core:- added
library_annotations(https://github.com/dart-lang/lints/issues/177) - added
no_wildcard_variable_uses(https://github.com/dart-lang/lints/issues/139) - removed
package_prefixed_library_names(https://github.com/dart-lang/lints/issues/172)
- added
recommended:- removed
library_names(https://github.com/dart-lang/lints/issues/181)
- removed
- Updated the SDK lower-bound to 3.1.
- Add a section on upgrading to the latest lint set to the readme.
3.0.0
core:- added
collection_methods_unrelated_type - added
dangling_library_doc_comments - added
implicit_call_tearoffs - added
secure_pubspec_urls - added
type_literal_in_constant_pattern - added
use_string_in_part_of_directives - removed
iterable_contains_unrelated_type - removed
list_remove_unrelated_type
- added
recommended:- added
unnecessary_to_list_in_spreads - added
use_super_parameters - removed
prefer_equal_for_default_values - removed
prefer_void_to_null
- added
- Add info about which lints have quick fixes to the package's readme.
- Move the list of lint rules from the readme to a separate rules.md file.
2.1.1
- Added the
analysisandlintstopics to the pubspec file. - Update the package's readme to include the list of lint rules that
package:lints/core.yamlandpackage:lints/recommended.yamlinclude.
2.1.0
- Updated the SDK lower-bound to 3.0.
- Removed
always_require_non_null_named_parametersfromrecommended.yamlas it is only relevant in Dart pre 2.12 and with Dart 3.0, libraries can no longer be opted back that far.
2.0.1
- Updated documentation for the
lib/core.yamlandlib/recommended.yamlanalysis configurations.
2.0.0
- Added the following lints to core.yaml:
depend_on_referenced_packagesnull_check_on_nullable_type_parameter
- Added the following lints to recommended.yaml:
library_private_types_in_public_apino_leading_underscores_for_library_prefixesno_leading_underscores_for_local_identifiersprefer_interpolation_to_compose_stringsunnecessary_constructor_nameunnecessary_lateunnecessary_null_aware_assignmentsunnecessary_nullable_for_final_variable_declarations
- Bumped the minimum required Dart SDK version to 2.17
1.0.1
- Documentation updates
1.0.0
- Initial stable version
