Fix include path in fuchsia's analysis_options.yaml files (flutter/engine#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?
This commit is contained in:
parent
ee512e0442
commit
a0eb1bc42c
@ -347,10 +347,8 @@
|
|||||||
../../../flutter/shell/platform/embedder/platform_view_embedder_unittests.cc
|
../../../flutter/shell/platform/embedder/platform_view_embedder_unittests.cc
|
||||||
../../../flutter/shell/platform/embedder/tests
|
../../../flutter/shell/platform/embedder/tests
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/README.md
|
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/README.md
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/analysis_options.yaml
|
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/pubspec.yaml
|
../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/pubspec.yaml
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/README.md
|
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/README.md
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/analysis_options.yaml
|
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/pubspec.yaml
|
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/pubspec.yaml
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/test
|
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/test
|
||||||
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/pubspec.yaml
|
../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/pubspec.yaml
|
||||||
@ -360,7 +358,6 @@
|
|||||||
../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.json
|
../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.json
|
||||||
../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.yaml
|
../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.yaml
|
||||||
../../../flutter/shell/platform/fuchsia/dart_runner/tests
|
../../../flutter/shell/platform/fuchsia/dart_runner/tests
|
||||||
../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/analysis_options.yaml
|
|
||||||
../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/pubspec.yaml
|
../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/pubspec.yaml
|
||||||
../../../flutter/shell/platform/fuchsia/flutter/README.md
|
../../../flutter/shell/platform/fuchsia/flutter/README.md
|
||||||
../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge_unittest.cc
|
../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge_unittest.cc
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
||||||
# Use of this source code is governed by a BSD-style license that can be
|
|
||||||
# found in the LICENSE file.
|
|
||||||
|
|
||||||
include: ../../analysis_options.yaml
|
|
@ -1,5 +0,0 @@
|
|||||||
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
||||||
# Use of this source code is governed by a BSD-style license that can be
|
|
||||||
# found in the LICENSE file.
|
|
||||||
|
|
||||||
include: ../../analysis_options.yaml
|
|
@ -1,5 +0,0 @@
|
|||||||
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
||||||
# Use of this source code is governed by a BSD-style license that can be
|
|
||||||
# found in the LICENSE file.
|
|
||||||
|
|
||||||
include: ../../../tools/analysis_options.yaml
|
|
@ -2,7 +2,7 @@
|
|||||||
# Use of this source code is governed by a BSD-style license that can be
|
# Use of this source code is governed by a BSD-style license that can be
|
||||||
# found in the LICENSE file.
|
# found in the LICENSE file.
|
||||||
|
|
||||||
include: ../../../tools/analysis_options.yaml
|
include: ../../../../../analysis_options.yaml
|
||||||
analyzer:
|
analyzer:
|
||||||
errors:
|
errors:
|
||||||
avoid_catches_without_on_clauses: ignore
|
avoid_catches_without_on_clauses: ignore
|
||||||
|
Loading…
x
Reference in New Issue
Block a user