flutter_flutter/packages/flutter_tools/analysis_options.yaml
2021-10-11 14:13:03 -07:00

13 lines
523 B
YAML

include: ../analysis_options.yaml
linter:
rules:
avoid_catches_without_on_clauses: true
curly_braces_in_flow_control_structures: true
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: false # For historical reasons we throw strings a lot.
prefer_relative_imports: true
public_member_api_docs: false # Tool does not have any public API.
unawaited_futures: true