This repository was archived by the owner on Nov 20, 2024. It is now read-only.
Commit a2b19bb 1 parent 79fb9c1 commit a2b19bb Copy full SHA for a2b19bb
File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 1.33.0
2
+
3
+ - fix ` unnecessary_parenthesis ` false-positive with null-aware expressions
4
+ - fix ` void_checks ` to allow assignments of ` Future<dynamic>? ` to parameters
5
+ typed ` FutureOr<void>? `
6
+ - removed support for:
7
+ - ` enable_null_safety `
8
+ - ` invariant_booleans `
9
+ - ` prefer_bool_in_asserts `
10
+ - ` prefer_equal_for_default_values `
11
+ - ` super_goes_last `
12
+ - update ` unnecessary_parenthesis ` to detect some doubled parens
13
+ - update ` void_checks ` to allow returning ` Never ` as void
14
+ - new lint: ` unnecessary_breaks `
15
+ - fix ` use_build_context_synchronously ` in if conditions
16
+ - update ` no_adjacent_strings_in_list ` to support set literals and for- and
17
+ if-elements
18
+
1
19
# 1.32.0
2
20
3
21
- update ` avoid_types_as_parameter_names ` to handle type variables
Original file line number Diff line number Diff line change 3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
5
/// Package version. Synchronized w/ pubspec.yaml.
6
- const String version = '1.32 .0' ;
6
+ const String version = '1.33 .0' ;
Original file line number Diff line number Diff line change 1
1
name : linter
2
- version : 1.32 .0
2
+ version : 1.33 .0
3
3
4
4
description : >-
5
5
The implementation of the lint rules supported by the analyzer framework.
You can’t perform that action at this time.
0 commit comments