Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkgs/lints/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## 6.0.0-wip

- `core`:
- added [strict_top_level_inference] (https://github.com/dart-lang/core/issues/836)
- `recommended`:
- added [unnecessary_underscores] (https://github.com/dart-lang/core/issues/856)
- Require Dart 3.7.
Expand Down
1 change: 1 addition & 0 deletions pkgs/lints/lib/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ linter:
- prefer_typing_uninitialized_variables
- provide_deprecation_message
- secure_pubspec_urls
- strict_top_level_inference
- type_literal_in_constant_pattern
- unintended_html_in_doc_comment
- unnecessary_overrides
Expand Down
1 change: 1 addition & 0 deletions pkgs/lints/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
| [`prefer_typing_uninitialized_variables`](https://dart.dev/lints/prefer_typing_uninitialized_variables) | Prefer typing uninitialized variables and fields. | ✅ |
| [`provide_deprecation_message`](https://dart.dev/lints/provide_deprecation_message) | Provide a deprecation message, via `@Deprecated("message")`. | |
| [`secure_pubspec_urls`](https://dart.dev/lints/secure_pubspec_urls) | Use secure urls in `pubspec.yaml`. | |
| [`strict_top_level_inference`](https://dart.dev/lints/strict_top_level_inference) | Specify type annotations. | ✅ |
| [`type_literal_in_constant_pattern`](https://dart.dev/lints/type_literal_in_constant_pattern) | Don't use constant patterns with type literals. | ✅ |
| [`unintended_html_in_doc_comment`](https://dart.dev/lints/unintended_html_in_doc_comment) | Use of angle brackets in a doc comment is treated as HTML by Markdown. | |
| [`unnecessary_overrides`](https://dart.dev/lints/unnecessary_overrides) | Don't override a method to do a super method invocation with the same parameters. | ✅ |
Expand Down