File tree 4 files changed +24
-4
lines changed
4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 91
91
- echo "$CIRRUS_CHANGE_MESSAGE" > "$CHANGE_DESC"
92
92
- ./script/tool_runner.sh version-check --check-for-missing-changes --change-description-file="$CHANGE_DESC"
93
93
- fi
94
- publishable_script : ./script/tool_runner.sh publish-check
94
+ publishable_script : ./script/tool_runner.sh publish-check --allow-pre-release
95
95
depends_on :
96
96
- format+analyze
97
97
- name : test
Original file line number Diff line number Diff line change
1
+ ## 2.0.0
2
+
3
+ * Added the following lints:
4
+ * ` sort_child_properties_last `
5
+ * ` use_build_context_synchronously `
6
+ * Updated ` package:lints ` dependency to version 2.0.0, which added the following lints:
7
+ * ` depend_on_referenced_packages `
8
+ * ` library_private_types_in_public_api `
9
+ * ` no_leading_underscores_for_library_prefixes `
10
+ * ` no_leading_underscores_for_local_identifiers `
11
+ * ` null_check_on_nullable_type_parameter `
12
+ * ` prefer_interpolation_to_compose_strings `
13
+ * ` unnecessary_constructor_name `
14
+ * ` unnecessary_late `
15
+ * ` unnecessary_null_aware_assignments `
16
+ * ` unnecessary_nullable_for_final_variable_declarations `
17
+ * Bumped the minimum required Dart SDK version to 2.17
18
+
1
19
## 1.0.4
2
20
3
21
* Small update to readme
Original file line number Diff line number Diff line change @@ -13,5 +13,7 @@ linter:
13
13
- prefer_const_declarations
14
14
- prefer_const_literals_to_create_immutables
15
15
- sized_box_for_whitespace
16
+ - sort_child_properties_last
17
+ - use_build_context_synchronously
16
18
- use_full_hex_values_for_flutter_colors
17
19
- use_key_in_widget_constructors
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ name: flutter_lints
2
2
description : Recommended lints for Flutter apps, packages, and plugins to encourage good coding practices.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/flutter_lints
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_lints%22
5
- version : 1 .0.4
5
+ version : 2 .0.0
6
6
7
7
environment :
8
- sdk : ' >=2.12. 0 <3.0.0'
8
+ sdk : ' >=2.17.0- 0 <3.0.0'
9
9
10
10
dependencies :
11
- lints : ^1 .0.0
11
+ lints : ^2 .0.0
12
12
# Code is not allowed in this package. Do not add any dependencies or dev_dependencies.
You can’t perform that action at this time.
0 commit comments