flutter/packages/flutter_tools/analysis_options.yaml

13 lines
540 B
YAML
Raw Normal View History

2021-10-07 23:48:04 +00:00
include: ../analysis_options.yaml
linter:
rules:
avoid_catches_without_on_clauses: true
2021-10-15 05:03:03 +00:00
avoid_catching_errors: false # TODO(ianh): we should refactor the tool codebase to avoid relying on this so much
2021-10-07 23:48:04 +00:00
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.
only_throw_errors: true
prefer_relative_imports: true
2021-10-07 23:48:04 +00:00
public_member_api_docs: false # Tool does not have any public API.
unawaited_futures: true