forked from angulardart/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis_options.yaml
52 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
51
52
analyzer:
errors:
unused_element: error
unused_import: error
unused_local_variable: error
dead_code: error
# Allow importing .template.dart files without an analyzer error.
uri_has_not_been_generated: ignore
# Ignore our own deprecated symbols.
deprecated_member_use_from_same_package: ignore
exclude:
- .dart_tool/**
- build/**
# TODO(https://github.com/dart-lang/angular/issues/1508)
- examples/hacker_news_pwa/test/**
plugins:
- angular
linter:
rules:
- avoid_empty_else
- avoid_init_to_null
- avoid_null_checks_in_equality_operators
- await_only_futures
- camel_case_types
- cancel_subscriptions
- control_flow_in_finally
- directives_ordering
- empty_catches
- empty_constructor_bodies
- empty_statements
- hash_and_equals
- iterable_contains_unrelated_type
- library_names
- library_prefixes
- list_remove_unrelated_type
- only_throw_errors
- overridden_fields
- package_api_docs
- package_names
- package_prefixed_library_names
- prefer_final_fields
- prefer_is_not_empty
- slash_for_doc_comments
- test_types_in_equals
- throw_in_finally
- type_init_formals
- unnecessary_brace_in_string_interps
- unrelated_type_equality_checks
- valid_regexps