flutter_flutter/engine/src/flutter/lib/web_ui/analysis_options.yaml
Yegor 6dc99dce8a [web] clean up dynamic calls, remove always_specify_types (flutter/engine#53228)
Remove the `avoid_dynamic_calls` exception in `web_ui`, and clean up all dynamic calls.
2024-06-06 02:16:55 +00:00

19 lines
576 B
YAML

# Web-specific analysis options.
#
# As of today the web code contains quite a few deviations from the repo-wide
# analysis options due to having been migrated from google3. The ultimate goal
# is to clean up our code and delete this file.
include: ../../analysis_options.yaml
linter:
rules:
avoid_print: false
avoid_setters_without_getters: false
library_private_types_in_public_api: false
no_default_cases: false
prefer_relative_imports: false
public_member_api_docs: false
unawaited_futures: true
use_setters_to_change_properties: false