Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[package:flutter_lints] update the dep on package:lints to 5.0.0 and the sdk dependency to 3.5.0 #7704

Merged
merged 3 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
14 changes: 9 additions & 5 deletions packages/flutter_lints/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
## NEXT

* Removed the following lints:
* `prefer_const_constructors` (see https://github.com/dart-lang/lints/issues/205)
## 5.0.0

* Updates `package:lints` dependency to version 5.0.0, with the following changes:
* adds `invalid_runtime_check_with_js_interop_types`
* adds `unnecessary_library_name`
* removes `avoid_null_checks_in_equality_operators`
* Removed the following lints (see https://github.com/dart-lang/lints/issues/205):
devoncarew marked this conversation as resolved.
Show resolved Hide resolved
devoncarew marked this conversation as resolved.
Show resolved Hide resolved
* `prefer_const_constructors`
* `prefer_const_declarations`
* `prefer_const_literals_to_create_immutables`
* Updates minimum supported SDK version to Flutter 3.19/Dart 3.3.
* Updates minimum supported SDK version to Flutter 3.24/Dart 3.5.

## 4.0.0

Expand Down
6 changes: 3 additions & 3 deletions packages/flutter_lints/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: flutter_lints
description: Recommended lints for Flutter apps, packages, and plugins to encourage good coding practices.
repository: https://github.com/flutter/packages/tree/main/packages/flutter_lints
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_lints%22
version: 4.0.0
version: 5.0.0

environment:
sdk: ^3.3.0
sdk: ^3.5.0

dependencies:
lints: ^4.0.0
lints: ^5.0.0
# Code is not allowed in this package. Do not add any dependencies or dev_dependencies.

topics:
Expand Down