From 5a9cea1e9c9b5144fdd04872ec8dd2d0444104f7 Mon Sep 17 00:00:00 2001 From: Srujan Gaddam Date: Mon, 12 Aug 2024 15:01:58 -0700 Subject: [PATCH] Move to analyzer/errors --- analysis_options.yaml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index e738fa7a..61501e47 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -20,24 +20,24 @@ analyzer: non_constant_identifier_names: ignore # Consider removing from dart_flutter_team_lints. unreachable_from_main: ignore + # MDN comments include HTML docs that trigger this lint. Reenable once + # that's resolved. + unintended_html_in_doc_comment: ignore linter: rules: - avoid_bool_literals_in_conditional_expressions: true - avoid_private_typedef_functions: true - avoid_redundant_argument_values: true - avoid_returning_this: true - avoid_unused_constructor_parameters: true - cancel_subscriptions: true - join_return_with_assignment: true - literal_only_boolean_expressions: true - no_adjacent_strings_in_list: true - no_runtimeType_toString: true - package_api_docs: true - prefer_const_declarations: true - prefer_final_locals: true - # MDN comments include HTML docs that trigger this lint. Reenable once - # that's resolved. - unintended_html_in_doc_comment: false - unnecessary_await_in_return: true - use_string_buffers: true + - avoid_bool_literals_in_conditional_expressions + - avoid_private_typedef_functions + - avoid_redundant_argument_values + - avoid_returning_this + - avoid_unused_constructor_parameters + - cancel_subscriptions + - join_return_with_assignment + - literal_only_boolean_expressions + - no_adjacent_strings_in_list + - no_runtimeType_toString + - package_api_docs + - prefer_const_declarations + - prefer_final_locals + - unnecessary_await_in_return + - use_string_buffers