-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis_options.yaml
38 lines (25 loc) · 1.06 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
include: package:yumemi_lints/dart/2.17.0/all.yaml
analyzer:
errors: # By including all.yaml, some rules will conflict.
# These warnings will be addressed within this file.
included_file_warning: ignore
avoid_dynamic_calls: ignore
cancel_subscriptions: ignore
linter:
rules: # Conflicts with enabling `avoid_types_on_closure_parameters`, `omit_local_variable_types`.
always_specify_types: false
# Conflicts with enabling `strict-raw-types`.
avoid_annotating_with_dynamic: false
# Conflicts with enabling `prefer_single_quotes`.
prefer_double_quotes: false
# Conflicts with enabling `avoid_final_parameters`.
prefer_final_parameters: false
# Conflicts with enabling `always_use_package_imports`.
prefer_relative_imports: false
# Conflicts with enabling `prefer_final_locals`.
unnecessary_final: false
public_member_api_docs: false
prefer_expression_function_bodies: false
diagnostic_describe_all_properties: false
avoid_classes_with_only_static_members: false
require_trailing_commas: true