-
Notifications
You must be signed in to change notification settings - Fork 170
/
analysis_options.yaml
67 lines (66 loc) · 1.94 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
include: package:lints/recommended.yaml
analyzer:
exclude:
# ignore vscode .history files
- .history/**
- test_data/**
language:
strict-casts: true
linter:
rules:
- always_put_required_named_parameters_first
- avoid_annotating_with_dynamic
- avoid_catches_without_on_clauses
- avoid_catching_errors
- avoid_dynamic_calls
- avoid_positional_boolean_parameters
- avoid_print
- avoid_redundant_argument_values
- avoid_returning_null
- avoid_returning_null_for_future
- avoid_returning_this
- avoid_setters_without_getters
- avoid_slow_async_io
- avoid_unused_constructor_parameters
- cancel_subscriptions
- cast_nullable_to_non_nullable
- collection_methods_unrelated_type
- comment_references
- dangling_library_doc_comments
- directives_ordering
- discarded_futures
- implicit_call_tearoffs
- join_return_with_assignment
- library_annotations
- literal_only_boolean_expressions
- no_adjacent_strings_in_list
- noop_primitive_operations
- only_throw_errors
- package_api_docs
- parameter_assignments
- prefer_asserts_in_initializer_lists
- prefer_const_constructors_in_immutables
- prefer_constructors_over_static_methods
- prefer_expression_function_bodies
- prefer_foreach
- prefer_null_aware_method_calls
- prefer_relative_imports
- prefer_single_quotes
- sort_pub_dependencies
- test_types_in_equals
- throw_in_finally
- unawaited_futures # pedantic
- unnecessary_breaks
- unnecessary_final
- unnecessary_lambdas
- unnecessary_library_directive
- unnecessary_null_checks
- unnecessary_parenthesis
- unnecessary_statements
- unreachable_from_main
- use_if_null_to_convert_nulls_to_bools
- use_late_for_private_fields_and_variables
- use_setters_to_change_properties
- use_string_buffers
- use_super_parameters
- use_to_and_as_if_applicable