|
| 1 | +analyzer: |
| 2 | + errors: |
| 3 | + mixin_inherits_from_not_object: ignore |
| 4 | +linter: |
| 5 | + rules: |
| 6 | + - always_declare_return_types |
| 7 | + - always_put_control_body_on_new_line |
| 8 | + - always_require_non_null_named_parameters |
| 9 | + - annotate_overrides |
| 10 | + - avoid_classes_with_only_static_members |
| 11 | + - avoid_empty_else |
| 12 | + - avoid_field_initializers_in_const_classes |
| 13 | + - avoid_function_literals_in_foreach_calls |
| 14 | + - avoid_init_to_null |
| 15 | + - avoid_null_checks_in_equality_operators |
| 16 | + - avoid_relative_lib_imports |
| 17 | + - avoid_renaming_method_parameters |
| 18 | + - avoid_return_types_on_setters |
| 19 | + - avoid_slow_async_io |
| 20 | + - await_only_futures |
| 21 | + - camel_case_types |
| 22 | + - cancel_subscriptions |
| 23 | + - control_flow_in_finally |
| 24 | + - directives_ordering |
| 25 | + - empty_catches |
| 26 | + - empty_constructor_bodies |
| 27 | + - empty_statements |
| 28 | + - hash_and_equals |
| 29 | + - implementation_imports |
| 30 | + - iterable_contains_unrelated_type |
| 31 | + - library_names |
| 32 | + - library_prefixes |
| 33 | + - list_remove_unrelated_type |
| 34 | + - no_adjacent_strings_in_list |
| 35 | + - no_duplicate_case_values |
| 36 | + - non_constant_identifier_names |
| 37 | + - overridden_fields |
| 38 | + - package_api_docs |
| 39 | + - package_names |
| 40 | + - package_prefixed_library_names |
| 41 | + - prefer_adjacent_string_concatenation |
| 42 | + - prefer_asserts_in_initializer_lists |
| 43 | + - prefer_collection_literals |
| 44 | + - prefer_conditional_assignment |
| 45 | + - prefer_const_constructors |
| 46 | + - prefer_const_declarations |
| 47 | + - prefer_const_literals_to_create_immutables |
| 48 | + - prefer_contains |
| 49 | + - prefer_equal_for_default_values |
| 50 | + - prefer_final_fields |
| 51 | + - prefer_final_locals |
| 52 | + - prefer_foreach |
| 53 | + - prefer_initializing_formals |
| 54 | + - prefer_is_empty |
| 55 | + - prefer_is_not_empty |
| 56 | + - prefer_typing_uninitialized_variables |
| 57 | + - recursive_getters |
| 58 | + - slash_for_doc_comments |
| 59 | + - sort_constructors_first |
| 60 | + - sort_unnamed_constructors_first |
| 61 | + - test_types_in_equals |
| 62 | + - throw_in_finally |
| 63 | + - type_init_formals |
| 64 | + - unnecessary_brace_in_string_interps |
| 65 | + - unnecessary_getters_setters |
| 66 | + - unnecessary_null_aware_assignments |
| 67 | + - unnecessary_null_in_if_null_operators |
| 68 | + - unnecessary_overrides |
| 69 | + - unnecessary_parenthesis |
| 70 | + - unnecessary_this |
| 71 | + - unrelated_type_equality_checks |
| 72 | + - use_rethrow_when_possible |
| 73 | + - unnecessary_new |
0 commit comments