Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 4e4a430

Browse files
authored
Fix include path in fuchsia's analysis_options.yaml files (#57203)
The old path doesn't exist. `dart format` stumbles over this non-existent include. `analysis_options.yaml` files that just imported something non-existent were deleted. I am surprised that this never caused any other issues. Is this all dead code that isn't actually analyzed?
1 parent 2f66432 commit 4e4a430

File tree

5 files changed

+1
-19
lines changed

5 files changed

+1
-19
lines changed

ci/licenses_golden/excluded_files

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,8 @@
347347
../../../flutter/shell/platform/embedder/platform_view_embedder_unittests.cc
348348
../../../flutter/shell/platform/embedder/tests
349349
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/README.md
350-
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/analysis_options.yaml
351350
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/pubspec.yaml
352351
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/README.md
353-
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/analysis_options.yaml
354352
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/pubspec.yaml
355353
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/test
356354
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/pubspec.yaml
@@ -360,7 +358,6 @@
360358
../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.json
361359
../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.yaml
362360
../../../flutter/shell/platform/fuchsia/dart_runner/tests
363-
../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/analysis_options.yaml
364361
../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/pubspec.yaml
365362
../../../flutter/shell/platform/fuchsia/flutter/README.md
366363
../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge_unittest.cc

shell/platform/fuchsia/dart-pkg/fuchsia/analysis_options.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

shell/platform/fuchsia/dart-pkg/zircon/analysis_options.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

shell/platform/fuchsia/dart_runner/vmservice/analysis_options.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

shell/platform/fuchsia/flutter/kernel/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

5-
include: ../../../tools/analysis_options.yaml
5+
include: ../../../../../analysis_options.yaml
66
analyzer:
77
errors:
88
avoid_catches_without_on_clauses: ignore

0 commit comments

Comments
 (0)