analysis_options.yaml 540 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 8
    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.
9
    only_throw_errors: true
10
    prefer_relative_imports: true
11
    public_member_api_docs: false # Tool does not have any public API.
12
    unawaited_futures: true