Skip to content

Commit 492a5bd

Browse files
authored
rev dep on package:lints to 5.0.0 (#301)
- rev dep on package:lints to 5.0.0 - prep. to publish `3.2.1` --- - [x] I’ve reviewed the contributor guide and applied the relevant portions to this PR. <details> <summary>Contribution guidelines:</summary><br> - See our [contributor guide](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md) for general expectations for PRs. - Larger or significant changes should be discussed in an issue before creating a PR. - Contributions to our repos should follow the [Dart style guide](https://dart.dev/guides/language/effective-dart) and use `dart format`. - Most changes should add an entry to the changelog and may need to [rev the pubspec package version](https://github.com/dart-lang/sdk/blob/main/docs/External-Package-Maintenance.md#making-a-change). - Changes to packages require [corresponding tests](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md#Testing). Note that many Dart repos have a weekly cadence for reviewing PRs - please allow for some latency before initial review feedback. </details>
1 parent 0ea4f59 commit 492a5bd

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

pkgs/dart_flutter_team_lints/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 3.2.1
2+
3+
- Depend on the `5.0.0` release of `package:lints`.
4+
- Removed duplicated lints: `unnecessary_library_name`,
5+
`invalid_runtime_check_with_js_interop_types`, and
6+
`unintended_html_in_doc_comment`
7+
18
## 3.2.0
29

310
- Contributed a (brief) change policy to the readme.

pkgs/dart_flutter_team_lints/lib/analysis_options.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ linter:
3434
- sort_pub_dependencies
3535
- unnecessary_lambdas
3636
- unnecessary_library_directive
37-
- unnecessary_library_name
3837
- unnecessary_parenthesis
3938
- unnecessary_statements
4039
- use_is_even_rather_than_modulo
@@ -45,11 +44,9 @@ linter:
4544
- avoid_dynamic_calls
4645
- comment_references
4746
- conditional_uri_does_not_exist
48-
- invalid_runtime_check_with_js_interop_types
4947
- only_throw_errors
5048
- test_types_in_equals
5149
- throw_in_finally
5250
- type_annotate_public_apis
5351
- unawaited_futures
54-
- unintended_html_in_doc_comment
5552
- unreachable_from_main

pkgs/dart_flutter_team_lints/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: dart_flutter_team_lints
22
description: An analysis rule set used by the Dart and Flutter teams.
3-
version: 3.2.0
3+
version: 3.2.1
44
repository: https://github.com/dart-lang/ecosystem/tree/main/pkgs/dart_flutter_team_lints
55

66
environment:
77
sdk: ^3.5.0
88

99
dependencies:
10-
lints: ^4.0.0
10+
lints: ^5.0.0
1111

1212
dev_dependencies:
1313
checks: ^0.3.0

0 commit comments

Comments
 (0)