-
Notifications
You must be signed in to change notification settings - Fork 46
/
analysis_options.yaml
62 lines (61 loc) · 1.83 KB
/
analysis_options.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
analyzer:
exclude:
- lib/**/*.g.dart
- test/**/*.g.dart
linter:
rules:
- always_declare_return_types
# - always_specify_types - needed for having shorthand final / var
- annotate_overrides
# - avoid_as - needed for strong mode
- avoid_empty_else
- avoid_init_to_null
- avoid_return_types_on_setters
- await_only_futures
- camel_case_types
- cancel_subscriptions
- close_sinks
# - constant_identifier_names - very minor.
- control_flow_in_finally
- directives_ordering
- empty_catches
- empty_constructor_bodies
- empty_statements
- hash_and_equals
- implementation_imports
- invariant_booleans
- iterable_contains_unrelated_type
- library_names
- library_prefixes
- literal_only_boolean_expressions
- list_remove_unrelated_type
- no_duplicate_case_values
- non_constant_identifier_names
# - one_member_abstracts - PageLoaderAttributes
# - only_throw_errors - throwing strings is fine
- overridden_fields
- package_api_docs
- package_names
- package_prefixed_library_names
- prefer_adjacent_string_concatenation
- prefer_collection_literals
- prefer_final_fields
- prefer_final_locals
- prefer_is_empty
- prefer_is_not_empty
- recursive_getters
# - public_member_api_docs - we don't document trivial accessors
- slash_for_doc_comments
# - sort_constructors_first - we have accessors close to members first
- sort_unnamed_constructors_first
- test_types_in_equals
- throw_in_finally
# - type_annotate_public_apis - we don't add types for final vars
- type_init_formals
- unawaited_futures
- unnecessary_brace_in_string_interps
- unnecessary_const
- unnecessary_getters_setters
- unnecessary_new
- unrelated_type_equality_checks
- valid_regexps