Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

2.1.0 #107

Merged
merged 4 commits into from
Apr 26, 2023
Merged

2.1.0 #107

Show file tree
Hide file tree
Changes from 3 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.1.0

- Updated SDK lower-bound to 3.0
- Removed `always_require_non_null_named_parameters` from `recommended.yaml`
as it is only relevant in Dart pre 2.12 and with Dart 3.0, libraries can
no longer be opted back that far.

## 2.0.1

- Updated documentation for the `lib/core.yaml` and `lib/recommended.yaml`
Expand Down
1 change: 0 additions & 1 deletion lib/recommended.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ include: package:lints/core.yaml

linter:
rules:
- always_require_non_null_named_parameters
- annotate_overrides
- avoid_function_literals_in_foreach_calls
- avoid_init_to_null
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: lints
version: 2.0.1
version: 2.1.0
description: >
Official Dart lint rules. Defines the 'core' and 'recommended' set of lints
suggested by the Dart team.
repository: https://github.com/dart-lang/lints

environment:
sdk: '>=2.17.0 <3.0.0'
sdk: ^3.0.0

# NOTE: Code is not allowed in this package. Do not add dependencies.
# dependencies:
Expand Down