analysis_options.yaml 590 Bytes
Newer Older
1
include: ../analysis_options.yaml
2 3 4

linter:
  rules:
5
    avoid_catches_without_on_clauses: true
6
    avoid_catching_errors: false # TODO(ianh): we should refactor the tool codebase to avoid relying on this so much
7
    curly_braces_in_flow_control_structures: true
8 9
    library_private_types_in_public_api: false # Tool does not have any public API.
    no_runtimeType_toString: false # We use runtimeType for debugging in the tool.
10
    only_throw_errors: true
11
    prefer_relative_imports: true
12
    public_member_api_docs: false # Tool does not have any public API.
13
    unawaited_futures: true