forked from TabooSun/overlay_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_options.yaml
More file actions
27 lines (25 loc) · 800 Bytes
/
analysis_options.yaml
File metadata and controls
27 lines (25 loc) · 800 Bytes
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
include: package:pedantic/analysis_options.yaml
analyzer:
exclude: [build/**]
errors:
invalid_use_of_protected_member: error
invalid_override_of_non_virtual_member: error
annotate_overrides: error
always_use_package_imports: error
linter:
rules:
curly_braces_in_flow_control_structures: true
prefer_final_fields: true
unawaited_futures: true
prefer_final_locals: true
prefer_final_in_for_each: true
always_declare_return_types: true
exhaustive_cases: true
slash_for_doc_comments: true
prefer_conditional_assignment: true
always_use_package_imports: true
prefer_const_constructors: true
prefer_const_declarations: true
prefer_const_literals_to_create_immutables: true
unnecessary_const: true
annotate_overrides: true