Enable `depend_on_referenced_packages` lint (#91653)

diff --git a/analysis_options.yaml b/analysis_options.yaml
index eb0155d..3cf379f 100644
--- a/analysis_options.yaml
+++ b/analysis_options.yaml
@@ -69,6 +69,7 @@
     - avoid_implementing_value_types
     - avoid_init_to_null
     # - avoid_js_rounded_ints # only useful when targeting JS runtime
+    # - avoid_multiple_declarations_per_line # seems to be a stylistic choice we don't subscribe to
     - avoid_null_checks_in_equality_operators
     # - avoid_positional_boolean_parameters # would have been nice to enable this but by now there's too many places that break it
     - avoid_print
@@ -103,6 +104,7 @@
     # - constant_identifier_names # needs an opt-out https://github.com/dart-lang/linter/issues/204
     - control_flow_in_finally
     # - curly_braces_in_flow_control_structures # not required by flutter style
+    - depend_on_referenced_packages
     - deprecated_consistency
     # - diagnostic_describe_all_properties # enabled only at the framework level (packages/flutter/lib)
     - directives_ordering
@@ -131,8 +133,8 @@
     - no_duplicate_case_values
     - no_logic_in_create_state
     # - no_runtimeType_toString # ok in tests; we enable this only in packages/
-    - noop_primitive_operations
     - non_constant_identifier_names
+    - noop_primitive_operations
     - null_check_on_nullable_type_parameter
     - null_closures
     # - omit_local_variable_types # opposite of always_specify_types