@@ -23,7 +23,6 @@ linter:
2323 - avoid_init_to_null
2424 - avoid_js_rounded_ints
2525 - avoid_multiple_declarations_per_line
26- - avoid_null_checks_in_equality_operators
2726 - avoid_positional_boolean_parameters
2827 - avoid_print
2928 - avoid_private_typedef_functions
@@ -93,6 +92,7 @@ linter:
9392 - noop_primitive_operations
9493 - null_check_on_nullable_type_parameter
9594 - null_closures
95+ - omit_obvious_local_variable_types
9696 - one_member_abstracts
9797 - only_throw_errors
9898 - overridden_fields
@@ -136,6 +136,8 @@ linter:
136136 - public_member_api_docs
137137 - recursive_getters
138138 - secure_pubspec_urls
139+ - simple_directive_paths
140+ - simplify_variable_pattern
139141 - slash_for_doc_comments
140142 - sort_child_properties_last
141143 - sort_pub_dependencies
@@ -178,7 +180,6 @@ linter:
178180 - unsafe_html
179181 - use_enums
180182 - use_function_type_syntax_for_parameters
181- - use_if_null_to_convert_nulls_to_bools
182183 - use_is_even_rather_than_modulo
183184 - use_named_constants
184185 - use_null_aware_elements
@@ -192,6 +193,7 @@ linter:
192193 - use_to_and_as_if_applicable
193194 - use_truncating_division
194195 - valid_regexps
196+ - var_with_no_type_annotation
195197 - void_checks
196198ignore :
197199 - always_declare_return_types
@@ -211,18 +213,21 @@ ignore:
211213 - no_default_cases
212214 - no_logic_in_create_state
213215 - omit_local_variable_types
216+ - omit_obvious_property_types
214217 - package_api_docs
215218 - parameter_assignments
216219 - prefer_double_quotes
217- - prefer_final_parameters
218220 - prefer_int_literals
219221 - prefer_mixin
220222 - prefer_relative_imports
223+ - remove_deprecations_in_breaking_versions
221224 - require_trailing_commas
222225 - sized_box_for_whitespace
223226 - sized_box_shrink_expand
224227 - sort_constructors_first
225228 - sort_unnamed_constructors_first
229+ - specify_nonobvious_local_variable_types
230+ - specify_nonobvious_property_types
226231 - unnecessary_final
227232 - unnecessary_library_name
228233 - unreachable_from_main
0 commit comments