-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathanalysis_options.yaml
More file actions
39 lines (36 loc) · 1.1 KB
/
analysis_options.yaml
File metadata and controls
39 lines (36 loc) · 1.1 KB
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
include: package:flutter_lints/flutter.yaml
analyzer:
errors:
deprecated_member_use_from_same_package: ignore
exclude:
- "lib/**/*.g.dart"
formatter:
trailing_commas: preserve
linter:
rules:
always_declare_return_types: true
always_put_control_body_on_new_line: true
avoid_print: true
avoid_renaming_method_parameters: true
avoid_unnecessary_containers: true
avoid_void_async: true
curly_braces_in_flow_control_structures: true
directives_ordering: true
flutter_style_todos: true
library_private_types_in_public_api: false
overridden_fields: false
prefer_const_constructors: true
prefer_const_constructors_in_immutables: false
prefer_final_fields: true
prefer_final_in_for_each: true
prefer_final_locals: true
prefer_single_quotes: true
sort_child_properties_last: true
sort_constructors_first: true
sort_unnamed_constructors_first: true
unnecessary_await_in_return: true
unnecessary_breaks: true
unnecessary_late: true
unnecessary_parenthesis: true
use_build_context_synchronously: false
void_checks: true