analysis_options.yaml 11.1 KB
Newer Older
1 2 3 4 5 6 7
# Specify analysis options.
#
# Until there are meta linter rules, each desired lint must be explicitly enabled.
# See: https://github.com/dart-lang/linter/issues/288
#
# For a list of lints, see: http://dart-lang.github.io/linter/lints/
# See the configuration guide for more
8
# https://github.com/dart-lang/sdk/tree/main/pkg/analyzer#configuring-the-analyzer
9 10 11 12 13 14 15
#
# There are other similar analysis options files in the flutter repos,
# which should be kept in sync with this file:
#
#   - analysis_options.yaml (this file)
#   - https://github.com/flutter/plugins/blob/master/analysis_options.yaml
#   - https://github.com/flutter/engine/blob/master/analysis_options.yaml
16
#   - https://github.com/flutter/packages/blob/master/analysis_options.yaml
17 18 19
#
# This file contains the analysis options used by Flutter tools, such as IntelliJ,
# Android Studio, and the `flutter analyze` command.
20 21

analyzer:
22
  strong-mode:
23
    implicit-casts: false
24
    implicit-dynamic: false
25
  errors:
26 27 28 29
    # treat missing required parameters as a warning (not a hint)
    missing_required_param: warning
    # treat missing returns as a warning (not a hint)
    missing_return: warning
30
    # allow having TODO comments in the code
31
    todo: ignore
32 33 34
    # allow self-reference to deprecated members (we do this because otherwise we have
    # to annotate every member in every test, assert, etc, when we deprecate something)
    deprecated_member_use_from_same_package: ignore
35
    # TODO(ianh): https://github.com/flutter/flutter/issues/74381
36 37
    # Clean up existing unnecessary imports, and remove line to ignore.
    unnecessary_import: ignore
38 39
    # Turned off until null-safe rollout is complete.
    unnecessary_null_comparison: ignore
40
  exclude:
41
    - "bin/cache/**"
42
      # Ignore protoc generated files
43
    - "dev/conductor/lib/proto/*"
44 45 46 47 48 49 50 51 52 53 54

linter:
  rules:
    # these rules are documented on and in the same order as
    # the Dart Lint rules page to make maintenance easier
    # https://github.com/dart-lang/linter/blob/master/example/all.yaml
    - always_declare_return_types
    - always_put_control_body_on_new_line
    # - always_put_required_named_parameters_first # we prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219
    - always_require_non_null_named_parameters
    - always_specify_types
55
    # - always_use_package_imports # we do this commonly
56 57
    - annotate_overrides
    # - avoid_annotating_with_dynamic # conflicts with always_specify_types
58
    - avoid_bool_literals_in_conditional_expressions
59 60
    # - avoid_catches_without_on_clauses # blocked on https://github.com/dart-lang/linter/issues/3023
    # - avoid_catching_errors # blocked on https://github.com/dart-lang/linter/issues/3023
61
    - avoid_classes_with_only_static_members
62
    - avoid_double_and_int_checks
63
    - avoid_dynamic_calls
64
    - avoid_empty_else
65
    - avoid_equals_and_hash_code_on_mutable_classes
66
    - avoid_escaping_inner_quotes
67 68
    - avoid_field_initializers_in_const_classes
    - avoid_function_literals_in_foreach_calls
69
    - avoid_implementing_value_types
70
    - avoid_init_to_null
71
    - avoid_js_rounded_ints
72
    # - avoid_multiple_declarations_per_line # seems to be a stylistic choice we don't subscribe to
73
    - avoid_null_checks_in_equality_operators
74 75
    # - avoid_positional_boolean_parameters # would have been nice to enable this but by now there's too many places that break it
    - avoid_print
76
    # - avoid_private_typedef_functions # we prefer having typedef (discussion in https://github.com/flutter/flutter/pull/16356)
77
    - avoid_redundant_argument_values
78 79 80
    - avoid_relative_lib_imports
    - avoid_renaming_method_parameters
    - avoid_return_types_on_setters
81 82
    # - avoid_returning_null # still violated by some pre-nnbd code that we haven't yet migrated
    - avoid_returning_null_for_future
83
    - avoid_returning_null_for_void
84
    # - avoid_returning_this # there are enough valid reasons to return `this` that this lint ends up with too many false positives
85
    - avoid_setters_without_getters
Ian Hickson's avatar
Ian Hickson committed
86
    - avoid_shadowing_type_parameters
87
    - avoid_single_cascade_in_expression_statements
88
    - avoid_slow_async_io
89
    - avoid_type_to_string
90 91
    - avoid_types_as_parameter_names
    # - avoid_types_on_closure_parameters # conflicts with always_specify_types
92
    - avoid_unnecessary_containers
93 94
    - avoid_unused_constructor_parameters
    - avoid_void_async
95
    # - avoid_web_libraries_in_flutter # we use web libraries in web-specific code, and our tests prevent us from using them elsewhere
96
    - await_only_futures
97
    - camel_case_extensions
98 99
    - camel_case_types
    - cancel_subscriptions
100
    # - cascade_invocations # doesn't match the typical style of this repo
101
    - cast_nullable_to_non_nullable
102
    # - close_sinks # not reliable enough
103
    # - comment_references # blocked on https://github.com/dart-lang/linter/issues/1142
104 105
    # - constant_identifier_names # needs an opt-out https://github.com/dart-lang/linter/issues/204
    - control_flow_in_finally
Ian Hickson's avatar
Ian Hickson committed
106
    # - curly_braces_in_flow_control_structures # not required by flutter style
107
    - depend_on_referenced_packages
108
    - deprecated_consistency
109
    # - diagnostic_describe_all_properties # enabled only at the framework level (packages/flutter/lib)
110
    - directives_ordering
111
    # - do_not_use_environment # there are appropriate times to use the environment, especially in our tests and build logic
112 113 114
    - empty_catches
    - empty_constructor_bodies
    - empty_statements
115
    - eol_at_end_of_file
116
    - exhaustive_cases
117
    - file_names
118 119 120 121 122
    - flutter_style_todos
    - hash_and_equals
    - implementation_imports
    # - invariant_booleans # too many false positives: https://github.com/dart-lang/linter/issues/811
    - iterable_contains_unrelated_type
Ian Hickson's avatar
Ian Hickson committed
123
    # - join_return_with_assignment # not required by flutter style
124
    - leading_newlines_in_multiline_strings
125 126
    - library_names
    - library_prefixes
127
    - library_private_types_in_public_api
Ian Hickson's avatar
Ian Hickson committed
128
    # - lines_longer_than_80_chars # not required by flutter style
129
    - list_remove_unrelated_type
130
    # - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/linter/issues/453
131
    - missing_whitespace_between_adjacent_strings
132
    - no_adjacent_strings_in_list
133
    - no_default_cases
134
    - no_duplicate_case_values
Ian Hickson's avatar
Ian Hickson committed
135 136
    - no_logic_in_create_state
    # - no_runtimeType_toString # ok in tests; we enable this only in packages/
137
    - non_constant_identifier_names
138
    - noop_primitive_operations
139
    - null_check_on_nullable_type_parameter
140
    - null_closures
141 142
    # - omit_local_variable_types # opposite of always_specify_types
    # - one_member_abstracts # too many false positives
143
    - only_throw_errors # this does get disabled in a few places where we have legacy code that uses strings et al
144 145
    - overridden_fields
    - package_api_docs
146
    - package_names
147 148 149 150
    - package_prefixed_library_names
    # - parameter_assignments # we do this commonly
    - prefer_adjacent_string_concatenation
    - prefer_asserts_in_initializer_lists
Ian Hickson's avatar
Ian Hickson committed
151
    # - prefer_asserts_with_message # not required by flutter style
152
    - prefer_collection_literals
153
    - prefer_conditional_assignment
Dan Field's avatar
Dan Field committed
154
    - prefer_const_constructors
155 156 157
    - prefer_const_constructors_in_immutables
    - prefer_const_declarations
    - prefer_const_literals_to_create_immutables
Ian Hickson's avatar
Ian Hickson committed
158
    # - prefer_constructors_over_static_methods # far too many false positives
159
    - prefer_contains
160
    # - prefer_double_quotes # opposite of prefer_single_quotes
161 162 163
    - prefer_equal_for_default_values
    # - prefer_expression_function_bodies # conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#consider-using--for-short-functions-and-methods
    - prefer_final_fields
164
    - prefer_final_in_for_each
165
    - prefer_final_locals
166
    # - prefer_final_parameters # we should enable this one day (see also parameter_assignments)
167
    - prefer_for_elements_to_map_fromIterable
168
    - prefer_foreach
169
    - prefer_function_declarations_over_variables
170
    - prefer_generic_function_type_aliases
171
    - prefer_if_elements_to_conditional_expressions
172
    - prefer_if_null_operators
173
    - prefer_initializing_formals
174
    - prefer_inlined_adds
175
    # - prefer_int_literals # conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#use-double-literals-for-double-constants
176
    - prefer_interpolation_to_compose_strings
177
    - prefer_is_empty
178
    - prefer_is_not_empty
179
    - prefer_is_not_operator
180
    - prefer_iterable_whereType
181
    # - prefer_mixin # Has false positives, see https://github.com/dart-lang/linter/issues/3018
182
    - prefer_null_aware_operators
183
    # - prefer_null_aware_method_calls # "call()" is confusing to people new to the language since it's not documented anywhere
184
    - prefer_relative_imports
185
    - prefer_single_quotes
186
    - prefer_spread_collections
187 188
    - prefer_typing_uninitialized_variables
    - prefer_void_to_null
189
    - provide_deprecation_message
190 191
    # - public_member_api_docs # enabled on a case-by-case basis; see e.g. packages/analysis_options.yaml
    - recursive_getters
192
    # - require_trailing_commas # blocked on https://github.com/dart-lang/sdk/issues/47441
193
    - sized_box_for_whitespace
194
    - slash_for_doc_comments
195
    - sort_child_properties_last
196
    - sort_constructors_first
197
    # - sort_pub_dependencies # prevents separating pinned transitive dependencies
198 199 200
    - sort_unnamed_constructors_first
    - test_types_in_equals
    - throw_in_finally
201
    - tighten_type_of_initializing_formals
202 203
    # - type_annotate_public_apis # subset of always_specify_types
    - type_init_formals
204
    # - unawaited_futures # too many false positives, especially with the way AnimationController works
205
    - unnecessary_await_in_return
206 207
    - unnecessary_brace_in_string_interps
    - unnecessary_const
208
    - unnecessary_constructor_name
209
    # - unnecessary_final # conflicts with prefer_final_locals
210 211 212 213
    - unnecessary_getters_setters
    # - unnecessary_lambdas # has false positives: https://github.com/dart-lang/linter/issues/498
    - unnecessary_new
    - unnecessary_null_aware_assignments
214
    - unnecessary_null_checks
215
    - unnecessary_null_in_if_null_operators
216
    - unnecessary_nullable_for_final_variable_declarations
217 218
    - unnecessary_overrides
    - unnecessary_parenthesis
219
    # - unnecessary_raw_strings # what's "necessary" is a matter of opinion; consistency across strings can help readability more than this lint
220
    - unnecessary_statements
221
    - unnecessary_string_escapes
222
    - unnecessary_string_interpolations
223 224
    - unnecessary_this
    - unrelated_type_equality_checks
225
    - unsafe_html
226
    - use_build_context_synchronously
227
    - use_full_hex_values_for_flutter_colors
228
    - use_function_type_syntax_for_parameters
229
    # - use_if_null_to_convert_nulls_to_bools # blocked on https://github.com/dart-lang/sdk/issues/47436
230
    - use_is_even_rather_than_modulo
231
    - use_key_in_widget_constructors
232
    - use_late_for_private_fields_and_variables
233
    - use_named_constants
234
    - use_raw_strings
235
    - use_rethrow_when_possible
236
    - use_setters_to_change_properties
237
    # - use_string_buffers # has false positives: https://github.com/dart-lang/sdk/issues/34182
238
    - use_test_throws_matchers
239 240
    # - use_to_and_as_if_applicable # has false positives, so we prefer to catch this by code-review
    - valid_regexps
241
    - void_checks