-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis_options.yaml
72 lines (70 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
71
72
include: package:flutter_lints/flutter.yaml
analyzer:
# More info: https://dart.dev/tools/analysis
exclude:
- 'build/**'
- '**/*.g.dart'
- '**/*.freezed.dart'
- '**/*.generated.dart'
- '**/*.json.dart'
- '**/*.reflectable.dart'
language:
# TODO... fix dynamic usage :-(
# strict-casts: true
# strict-raw-types: true
linter:
# More info: https://dart.dev/tools/linter-rules
rules:
- always_declare_return_types
- always_use_package_imports
- annotate_redeclares
- avoid_bool_literals_in_conditional_expressions
- avoid_dynamic_calls
- avoid_field_initializers_in_const_classes
- avoid_private_typedef_functions
- avoid_slow_async_io
- avoid_type_to_string
- avoid_types_on_closure_parameters
- avoid_unused_constructor_parameters
- avoid_void_async
- cancel_subscriptions
- cascade_invocations
- cast_nullable_to_non_nullable
- close_sinks
- combinators_ordering
- directives_ordering
- discarded_futures
- eol_at_end_of_file
- implicit_reopen
- invalid_case_patterns
- join_return_with_assignment
- matching_super_parameters
- missing_whitespace_between_adjacent_strings
- no_adjacent_strings_in_list
- no_runtimeType_toString
- noop_primitive_operations
- only_throw_errors
- parameter_assignments
- prefer_asserts_in_initializer_lists
- prefer_asserts_with_message
- prefer_if_elements_to_conditional_expressions
- prefer_null_aware_method_calls
- sized_box_shrink_expand
- throw_in_finally
- unawaited_futures
- unnecessary_breaks
- unnecessary_lambdas
- unnecessary_null_aware_operator_on_extension_on_nullable
- unnecessary_null_checks
- unnecessary_parenthesis
- unnecessary_raw_strings
- unnecessary_statements
- unreachable_from_main
- use_colored_box
- use_decorated_box
- use_enums
- use_is_even_rather_than_modulo
- use_late_for_private_fields_and_variables
- use_named_constants
- use_string_buffers
- use_to_and_as_if_applicable