-
Notifications
You must be signed in to change notification settings - Fork 24
/
analysis_options.yaml
60 lines (49 loc) · 1.44 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
include: package:lint/analysis_options.yaml
# package: flutter_lints/flutter.yaml
linter:
rules:
avoid_deprecated_members: false
file_names: false
curly_braces_in_flow_control_structures: false
avoid_classes_with_only_static_members: false
sort_constructors_first: true
prefer_single_quotes: true
avoid_void_async: false
sized_box_for_whitespace: false
prefer_interpolation_to_compose_strings: false
avoid_print: false
# always_specify_types: true
# const_initialized_with_non_constant_value: false
# import_of_legacy_library_into_null_safe: false
avoid_positional_boolean_parameters: false
use_string_buffers: false
use_build_context_synchronously: false
depend_on_referenced_packages: false
join_return_with_assignment: false
unnecessary_string_escapes: false
avoid_dynamic_calls: false
non_constant_identifier_names: false
no_wildcard_variable_uses: false
analyzer:
errors:
deprecated_member_use: ignore
# enable-experiment:
# - inline-class
# - records
exclude:
- lib/**/*.g.dart
- lib/**/*.freezed.dart
- maintainance/**
- pubspec.yaml
# include: package:flutter_lints/flutter.yaml
# linter:
# rules:
# depend_on_referenced_packages:false
# analyzer:
# exclude:
# - "**/*.g.dart"
# # strong-mode:
# # implicit-casts: false
# # implicit-dynamic: false
# errors:
# invalid_annotation_target: ignore