Unverified Commit a628814e authored by Matan Lurey's avatar Matan Lurey Committed by GitHub

Allow deprecated members from the Dart SDK and Flutter Engine to roll in (#143347)

Namely, without breaking the tree. This is a deliberate policy decision
change.

See https://github.com/flutter/flutter/issues/143312.
parent 8ba086a2
...@@ -20,8 +20,10 @@ analyzer: ...@@ -20,8 +20,10 @@ analyzer:
strict-inference: true strict-inference: true
strict-raw-types: true strict-raw-types: true
errors: errors:
# allow self-reference to deprecated members (we do this because otherwise we have # allow deprecated members (we do this because otherwise we have to annotate
# to annotate every member in every test, assert, etc, when we deprecate something) # every member in every test, assert, etc, when we or the Dart SDK deprecates
# something (https://github.com/flutter/flutter/issues/143312)
deprecated_member_use: ignore
deprecated_member_use_from_same_package: ignore deprecated_member_use_from_same_package: ignore
exclude: exclude:
- "bin/cache/**" - "bin/cache/**"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment