-
Notifications
You must be signed in to change notification settings - Fork 0
/
analysis_options.yaml
41 lines (39 loc) · 1.2 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
include: package:very_good_analysis/analysis_options.yaml
analyzer:
exclude:
- "**/*.freezed.dart"
- "**/*.g.dart"
- "**/*.gr.dart"
- "**/*.mocks.dart"
errors:
missing_required_param: error
missing_return: error
todo: ignore
invalid_annotation_target: ignore
strong-mode:
implicit-casts: false
implicit-dynamic: false
linter:
rules:
prefer_single_quotes: true
no_leading_underscores_for_local_identifiers: false
directives_ordering: false
prefer_double_quotes: false
always_use_package_imports: false
sort_constructors_first: false
library_private_types_in_public_api: false
avoid_dynamic_calls: false
comment_references: false
library_prefixes: false
# use_key_in_widget_constructors: false
prefer_const_constructors: true
prefer_const_constructors_in_immutables: true
prefer_const_literals_to_create_immutables: true
omit_local_variable_types: true
# always_specify_types: false
unnecessary_final: false
public_member_api_docs: false
prefer_expression_function_bodies: false
avoid_classes_with_only_static_members: false
lines_longer_than_80_chars: false
prefer_relative_imports: true