@@ -88,12 +88,14 @@ linter:
8888 # - cascade_invocations # doesn't match the typical style of this repo
8989 - cast_nullable_to_non_nullable
9090 # - close_sinks # not reliable enough
91+ - collection_methods_unrelated_type
9192 - combinators_ordering
9293 # - comment_references # blocked on https://github.com/dart-lang/linter/issues/1142
9394 - conditional_uri_does_not_exist
9495 # - constant_identifier_names # needs an opt-out https://github.com/dart-lang/linter/issues/204
9596 - control_flow_in_finally
9697 - curly_braces_in_flow_control_structures
98+ # - dangling_library_doc_comments # not yet tested
9799 - depend_on_referenced_packages
98100 - deprecated_consistency
99101 # - diagnostic_describe_all_properties # enabled only at the framework level (packages/flutter/lib)
@@ -103,15 +105,18 @@ linter:
103105 - empty_catches
104106 - empty_constructor_bodies
105107 - empty_statements
108+ - enable_null_safety
106109 - eol_at_end_of_file
107110 - exhaustive_cases
108111 - file_names
109112 - flutter_style_todos
110113 - hash_and_equals
111114 - implementation_imports
115+ - implicit_call_tearoffs
112116 - iterable_contains_unrelated_type
113117 # - join_return_with_assignment # not required by flutter style
114118 - leading_newlines_in_multiline_strings
119+ # - library_annotations # not yet tested
115120 - library_names
116121 - library_prefixes
117122 - library_private_types_in_public_api
@@ -204,6 +209,7 @@ linter:
204209 - unnecessary_getters_setters
205210 # - unnecessary_lambdas # has false positives: https://github.com/dart-lang/linter/issues/498
206211 - unnecessary_late
212+ - unnecessary_library_directive
207213 - unnecessary_new
208214 - unnecessary_null_aware_assignments
209215 - unnecessary_null_aware_operator_on_extension_on_nullable
@@ -218,6 +224,7 @@ linter:
218224 - unnecessary_string_interpolations
219225 - unnecessary_this
220226 - unnecessary_to_list_in_spreads
227+ - unreachable_from_main
221228 - unrelated_type_equality_checks
222229 - unsafe_html
223230 - use_build_context_synchronously
@@ -235,6 +242,7 @@ linter:
235242 - use_rethrow_when_possible
236243 - use_setters_to_change_properties
237244 # - use_string_buffers # has false positives: https://github.com/dart-lang/sdk/issues/34182
245+ - use_string_in_part_of_directives
238246 - use_super_parameters
239247 - use_test_throws_matchers
240248 # - use_to_and_as_if_applicable # has false positives, so we prefer to catch this by code-review
0 commit comments