@@ -43,12 +43,15 @@ linter:
43
43
- avoid_catching_errors
44
44
- avoid_classes_with_only_static_members
45
45
- avoid_double_and_int_checks
46
+ - avoid_dynamic_calls
47
+ - avoid_empty_else
46
48
- avoid_equals_and_hash_code_on_mutable_classes
47
49
- avoid_escaping_inner_quotes
48
50
- avoid_field_initializers_in_const_classes
49
51
- avoid_function_literals_in_foreach_calls
50
52
- avoid_implementing_value_types
51
53
- avoid_js_rounded_ints
54
+ - avoid_multiple_declarations_per_line
52
55
- avoid_positional_boolean_parameters
53
56
# - avoid_print
54
57
- avoid_private_typedef_functions
@@ -60,6 +63,7 @@ linter:
60
63
- avoid_returning_this
61
64
- avoid_setters_without_getters
62
65
- avoid_slow_async_io
66
+ - avoid_type_to_string
63
67
- avoid_types_on_closure_parameters
64
68
- avoid_unnecessary_containers
65
69
- avoid_unused_constructor_parameters
@@ -68,10 +72,12 @@ linter:
68
72
- camel_case_types
69
73
- cancel_subscriptions
70
74
- cascade_invocations
75
+ - cast_nullable_to_non_nullable
71
76
- close_sinks
72
77
- comment_references
73
78
- constant_identifier_names
74
79
- control_flow_in_finally
80
+ - deprecated_consistency
75
81
- diagnostic_describe_all_properties
76
82
- directives_ordering
77
83
- do_not_use_environment
@@ -94,6 +100,7 @@ linter:
94
100
- no_logic_in_create_state
95
101
- no_runtimeType_toString
96
102
- non_constant_identifier_names
103
+ - null_check_on_nullable_type_parameter
97
104
# - one_member_abstracts
98
105
- only_throw_errors
99
106
- overridden_fields
@@ -132,21 +139,26 @@ linter:
132
139
- sort_unnamed_constructors_first
133
140
- test_types_in_equals
134
141
- throw_in_finally
142
+ - tighten_type_of_initializing_formals
135
143
- type_annotate_public_apis
136
144
- unnecessary_await_in_return
137
145
# - unnecessary_final
138
146
- unnecessary_lambdas
139
147
- unnecessary_null_aware_assignments
148
+ - unnecessary_null_checks
140
149
- unnecessary_nullable_for_final_variable_declarations
141
150
- unnecessary_overrides
142
151
- unnecessary_parenthesis
143
152
- unnecessary_raw_strings
144
153
- unnecessary_statements
145
154
- unnecessary_string_escapes
146
155
- unnecessary_string_interpolations
156
+ - use_build_context_synchronously
157
+ - use_if_null_to_convert_nulls_to_bools
147
158
- use_is_even_rather_than_modulo
148
159
- use_key_in_widget_constructors
149
160
- use_late_for_private_fields_and_variables
161
+ - use_named_constants
150
162
- use_raw_strings
151
163
- use_setters_to_change_properties
152
164
- use_string_buffers
0 commit comments