Skip to content

Commit 006b0ae

Browse files
Disable deprecated rule (#19)
* disable deprecated rule * update changelog, version, description
1 parent 1a61a22 commit 006b0ae

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.14
2+
3+
- Disabe invariant_booleans as it is deprecated in Flutter 3.7
4+
15
## 0.0.13
26

37
- enable use_colored_box & use_decorated_box + add more comments about specific lints

lib/analysis_options.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ linter:
146146
- file_names
147147
- hash_and_equals
148148
- implementation_imports
149-
- invariant_booleans
149+
# deprecated rule in Flutter 3.7
150+
# - invariant_booleans
150151
- iterable_contains_unrelated_type
151152
- join_return_with_assignment
152153
- leading_newlines_in_multiline_strings

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: solid_lints
22
description:
33
Lints for Dart and Flutter based on software industry standards and best
44
practices.
5-
version: 0.0.13
5+
version: 0.0.14
66
homepage: https://github.com/solid-software/solid_lints/
77

88
environment:

0 commit comments

Comments
 (0)