1
0
mirror of https://github.com/dart-lang/sdk synced 2024-07-03 00:08:46 +00:00

fix misplaced linter change entries for 2.17

See: 75e03d7875 (commitcomment-68437878)



Change-Id: I37e17fec16c7b76df390421f61ba16a8ea24cdc1
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/237100
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
This commit is contained in:
pq 2022-03-14 15:56:38 +00:00 committed by Commit Bot
parent ad3d2eb5c4
commit 3778e79365

View File

@ -101,6 +101,23 @@
[web] A web app that uses only core Dart libraries.
```
#### Linter
Updated the Linter to `1.19.2`, which includes changes that
- adds new lint: `use_super_initializers`.
- adds new lint: `use_enums`.
- adds new lint: `use_colored_box`.
- improves performance for `sort_constructors`.
- improves docs for `always_use_package_imports`,
`avoid_print`, and `avoid_relative_lib_imports` .
- updates `avoid_void_async` to skip `main` functions.
- updates `prefer_final_parameters` to not super on super params.
- updates lints for enhanced-enums and super-initializer language
features.
- updates `unnecessary_late` to report on variable names.
- marks `null_check_on_nullable_type_parameter` stable.
## 2.16.1 - 2022-02-09
This is a patch release that fixes an AOT precompiler crash when building some
@ -183,20 +200,8 @@ in 2018, as it doesn't work with any Dart 2.x release.
#### Linter
Updated the Linter to `1.19.2`, which includes changes that
Updated the Linter to `1.18.0`, which includes changes that
- adds new lint: `use_super_initializers`.
- adds new lint: `use_enums`.
- adds new lint: `use_colored_box`.
- improves performance for `sort_constructors`.
- improves docs for `always_use_package_imports`,
`avoid_print`, and `avoid_relative_lib_imports` .
- updates `avoid_void_async` to skip `main` functions.
- updates `prefer_final_parameters` to not super on super params.
- updates lints for enhanced-enums and super-initializer language
features.
- updates `unnecessary_late` to report on variable names.
- marks `null_check_on_nullable_type_parameter` stable.
- extends `camel_case_types` to cover enums.
- fixes `no_leading_underscores_for_local_identifiers` to not
mis-flag field formal parameters with default values.