-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
analysis_options.yaml
114 lines (85 loc) · 3.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Enable all rules by default
include: all_lint_rules.yaml
analyzer:
language:
strict-casts: true
strict-inference: true
strict-raw-types: true
errors:
dead_code: warning
# Otherwise cause the import of all_lint_rules to warn because of some rules conflicts.
# The conflicts are fixed in this file instead, so we can safely ignore the warning.
included_file_warning: ignore
missing_required_param: error
missing_return: error
linter:
rules:
# We prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219
always_put_required_named_parameters_first: false
# Conflicts with `omit_local_variable_types` and other rules.
# As per Dart guidelines, we want to avoid unnecessary types to make the code
# more readable.
# See https://dart.dev/guides/language/effective-dart/design#avoid-type-annotating-initialized-local-variables
always_specify_types: false
# Conflicts with always_specify_types
avoid_annotating_with_dynamic: false
# Only useful when targeting JS runtime
avoid_double_and_int_checks: false
# Improve readbility
avoid_function_literals_in_foreach_calls: false
# Only useful when targeting JS runtime
avoid_js_rounded_ints: false
# We prefer having typedef (discussion in https://github.com/flutter/flutter/pull/16356)
avoid_private_typedef_functions: false
# Can be useful to have a more readable code
avoid_types_on_closure_parameters: false
# Can be difficult to read in some cases
cascade_invocations: false
# Not reliable enough
close_sinks: false
# Blocked on https://github.com/flutter/flutter/issues/20765
comment_references: false
# Not useful for public properties for a constructor
diagnostic_describe_all_properties: false
# Can be useful to have a more readable code
join_return_with_assignment: false
# Not useful for comments
lines_longer_than_80_chars: false
# Too many false positives: https://github.com/dart-lang/sdk/issues/34181
literal_only_boolean_expressions: false
# Can be useful to have a more readable code
omit_local_variable_types: false
# Too many false positives
one_member_abstracts: false
# Issue: https://github.com/flutter/flutter/issues/5792
only_throw_errors: false
# Issue: https://github.com/dart-lang/language/issues/32
prefer_mixin: false
# Intelissence do the jobs for constructors.
prefer_asserts_with_message: false
# More readable
prefer_relative_imports: false
# Conflicts with `prefer_single_quotes`
# Single quotes are easier to type and don't compromise on readability.
prefer_double_quotes: false
# Conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#consider-using--for-short-functions-and-methods
# Not quite suitable for Flutter, which may have a `build` method with a single
# return, but that return is still complex enough that a "body" is worth it.
prefer_expression_function_bodies: false
# While very useful for packages, it is too tiresome to apply for private projects.
# Disabling it avoid redundant comments like:
# // The counter
# int count;
public_member_api_docs: false
# Too many false positives
unawaited_futures: false
# Has false positives: https://github.com/dart-lang/linter/issues/498
unnecessary_lambdas: false
# Has false positives: https://github.com/dart-lang/sdk/issues/34182
use_string_buffers: false
# Has false positives, so we prefer to catch this by code-review
use_to_and_as_if_applicable: false
# Incompatible with `prefer_final_locals`
# Having immutable local variables makes larger functions more predictible
# so we will use `prefer_final_locals` instead.
unnecessary_final: false