forked from dart-archive/html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analysis_options.yaml
50 lines (49 loc) · 1.3 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
analyzer:
errors:
unused_import: error
unused_local_variable: error
dead_code: error
override_on_non_overriding_method: error
linter:
rules:
# Errors
- avoid_empty_else
- await_only_futures
#- comment_references
- control_flow_in_finally
- empty_statements
- hash_and_equals
- iterable_contains_unrelated_type
- no_duplicate_case_values
- test_types_in_equals
- throw_in_finally
- unawaited_futures
- unnecessary_statements
- unrelated_type_equality_checks
- valid_regexps
# Style
#- annotate_overrides
#- avoid_function_literals_in_foreach_calls
- avoid_init_to_null
- avoid_return_types_on_setters
- avoid_returning_null
- avoid_unused_constructor_parameters
- camel_case_types
- directives_ordering
- empty_catches
- empty_constructor_bodies
- library_names
- library_prefixes
#- non_constant_identifier_names
#- prefer_conditional_assignment
- prefer_final_fields
- prefer_is_empty
- prefer_is_not_empty
#- prefer_typing_uninitialized_variables
- recursive_getters
#- slash_for_doc_comments
- type_init_formals
#- unnecessary_brace_in_string_interps
- unnecessary_getters_setters
- unnecessary_lambdas
- unnecessary_null_aware_assignments