pedantic 1.10.0-nullsafety.2 pedantic: ^1.10.0-nullsafety.2 copied to clipboard
The Dart analyzer settings and best practices used internally at Google.
1.10.0-nullsafety.2 #
- Allow prerelease versions of the 2.12 sdk.
1.10.0-nullsafety.1 #
- Allow 2.10 stable and 2.11.0 dev SDK versions.
1.10.0-nullsafety #
- Migrate to null safety.
1.9.2 #
Revert changes in 1.9.1
due to problems moving unawaited
to meta
.
1.9.1 #
package:meta
is now the recommended place to get the unawaited
method.
pedantic
now exports that implementation, so the two are compatible.
unawaited
will be removed from pedantic
in version 2.0.0
.
1.9.0 #
-
Enforce 17 new lint rules:
always_declare_return_types
always_require_non_null_named_parameters
annotate_overrides
avoid_null_checks_in_equality_operators
camel_case_extensions
omit_local_variable_types
prefer_adjacent_string_concatenation
prefer_collection_literals
prefer_conditional_assignment
prefer_final_fields
prefer_for_elements_to_map_fromIterable
prefer_generic_function_type_aliases
prefer_if_null_operators
prefer_single_quotes
prefer_spread_collections
unnecessary_this
use_function_type_syntax_for_parameters
-
Mark a number of lints unused, see
README.md
for details.
1.8.0 #
-
Enforce three new lint rules:
1.7.0 #
- Add versioned
analysis_options.yaml
files to the package so it's possible to pin to a version without also pinning the pub dependency. SeeREADME.md
for updated usage guide.
1.6.0 #
1.5.0 #
-
Enforce three new lint rules:
avoid_shadowing_type_parameters
,empty_constructor_bodies
,slash_for_doc_comments
- Violations can be cleaned up with the formatter's--fix-doc-comments
flag.
1.4.0 #
- Enforce
avoid_init_to_null
andnull_closures
.
1.3.0 #
- Enforce
prefer_is_empty
.
1.2.0 #
- Enforce
unawaited_futures
. Stop enforcingcontrol_flow_in_finally
andthrow_in_finally
.
1.1.0 #
- Move
analysis_options.yaml
underlib
so you can import it directly from your ownanalysis_options.yaml
. SeeREADME.md
for example.
1.0.0 #
- Describe Dart static analysis use at Google in
README.md
. - Add sample
analysis_options.yaml
. - Add
unawaited
method for silencing theunawaited_futures
lint.