forked from dart-archive/stagehand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis_options.yaml
52 lines (50 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
51
52
include: package:pedantic/analysis_options.1.9.0.yaml
analyzer:
exclude:
- 'templates/**'
# Lint rules and documentation, see http://dart-lang.github.io/linter/lints
errors:
unused_element: error
unused_import: error
unused_local_variable: error
dead_code: error
linter:
rules:
# Errors
- avoid_empty_else
- cancel_subscriptions
- comment_references
- control_flow_in_finally
- empty_statements
- hash_and_equals
- implementation_imports
- iterable_contains_unrelated_type
- list_remove_unrelated_type
- test_types_in_equals
- throw_in_finally
- unrelated_type_equality_checks
- valid_regexps
# Style
- annotate_overrides
- avoid_init_to_null
- avoid_return_types_on_setters
- await_only_futures
- camel_case_types
- constant_identifier_names
- directives_ordering
- empty_catches
- empty_constructor_bodies
- library_names
- library_prefixes
- non_constant_identifier_names
- omit_local_variable_types
- only_throw_errors
- prefer_final_fields
- prefer_generic_function_type_aliases
- prefer_is_not_empty
- prefer_single_quotes
- slash_for_doc_comments
- type_init_formals
- unnecessary_brace_in_string_interps
- unnecessary_const
- unnecessary_new