From b5b3ab9c53e87f069f59a796071b0abbf465b505 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Tue, 29 Oct 2024 14:49:40 -0700 Subject: [PATCH] Disable two lint rules which are being removed. Each of these are going to be removed soon. * avoid_null_checks_in_equality_operators * unsafe_html Work towards https://github.com/dart-lang/linter/issues/5063 and https://github.com/dart-lang/linter/issues/5001 --- all_lint_rules.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/all_lint_rules.yaml b/all_lint_rules.yaml index b43b019..02eee2c 100644 --- a/all_lint_rules.yaml +++ b/all_lint_rules.yaml @@ -21,7 +21,6 @@ linter: - avoid_implementing_value_types - avoid_init_to_null - avoid_js_rounded_ints - - avoid_null_checks_in_equality_operators - avoid_positional_boolean_parameters - avoid_print - avoid_private_typedef_functions @@ -163,7 +162,6 @@ linter: - unnecessary_string_interpolations - unnecessary_this - unrelated_type_equality_checks - - unsafe_html - use_full_hex_values_for_flutter_colors - use_function_type_syntax_for_parameters - use_is_even_rather_than_modulo