This repository was archived by the owner on Nov 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
Expand file tree Collapse file tree 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+
119# 1.32.0
220
321- update ` avoid_types_as_parameter_names ` to handle type variables
Original file line number Diff line number Diff line change 33// BSD-style license that can be found in the LICENSE file.
44
55/// 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 11name : linter
2- version : 1.32 .0
2+ version : 1.33 .0
33
44description : >-
55 The implementation of the lint rules supported by the analyzer framework.
You can’t perform that action at this time.
0 commit comments