-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Support nested analysis options files #212
Conversation
To view this pull requests documentation preview, visit the following URL: Documentation is deployed and generated using docs.page. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Hey @rrousselGit! 👋 I created a new PR based off of #204 to allow edits by the maintainer. I made all the necessary changes based on the comments from #204 and all of the tests pass. I need some help finishing up this PR. I believe that it is pretty close to being completed, there is something that I am not able to figure out and I am hoping that you'll be able to guide me on it. Another instance?When I started to test custom lint locally, I was getting some weird behavior. There seemed to be another instance of Is there a particular process in order to work on the project that I am unaware of? # pubspec.yaml
dependency_overrides:
custom_lint_core:
path: <path>/dart_custom_lint/packages/custom_lint_core
custom_lint:
path: <path>/dart_custom_lint/packages/custom_lint
custom_lint_builder:
path: <path>/dart_custom_lint/packages/custom_lint_builder Errors after initial loadThe request analysis.setContextRoots failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension> Errors upon entering dart fileThe request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getFixes failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getFixes failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getAssists failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getAssists failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getFixes failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getAssists failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getFixes failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getAssists failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getFixes failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request edit.getAssists failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setPriorityFiles failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.setSubscriptions failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension>
The request analysis.updateContent failed with the following error:
RequestErrorCode.PLUGIN_ERROR
Failed to read pubspec.yaml at /Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name:
PathNotFoundException: Cannot open file, path = '/Users/morgan/Documents/develop.nosync/couchsurfing/react-node-experimental/libs/tooling/dart-linters/test/match_file_to_class_name/pubspec.yaml' (OS Error: No such file or directory, errno = 2)
#0 _checkForErrorResponse (dart:io/common.dart:55:9)
#1 _File.open.<anonymous closure> (dart:io/file_impl.dart:381:7)
#2 _rootRunUnary (dart:async/zone.dart:1407:47)
#3 _CustomZone.runUnary (dart:async/zone.dart:1308:19)
<asynchronous suspension>
#4 _File.readAsBytes.<anonymous closure> (dart:io/file_impl.dart:562:24)
<asynchronous suspension>
#5 _File.readAsString (dart:io/file_impl.dart:621:18)
<asynchronous suspension>
#6 parsePubspec (package:custom_lint/src/package_utils.dart:84:24)
<asynchronous suspension>
#7 CustomLintProject.parse (package:custom_lint/src/workspace.dart:980:28)
<asynchronous suspension>
#8 Future.wait.<anonymous closure> (dart:async/future.dart:523:21)
<asynchronous suspension>
#9 CustomLintWorkspace.fromContextRoots (package:custom_lint/src/workspace.dart:487:22)
<asynchronous suspension>
#10 SocketCustomLintServerToClientChannel.create (package:custom_lint/src/v2/server_to_client_channel.dart:54:23)
<asynchronous suspension>
#11 CustomLintServer._maybeSpawnCustomLintPlugin (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:347:23)
<asynchronous suspension>
#12 CustomLintServer._handleAnalysisSetContextRoots.<anonymous closure> (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:328:9)
<asynchronous suspension>
#13 PendingOperation.run (package:custom_lint/src/async_operation.dart:22:14)
<asynchronous suspension>
#14 CustomLintServer._handleRequest (package:custom_lint/src/v2/custom_lint_analyzer_plugin.dart:160:22)
<asynchronous suspension>
at:
#0 CustomLintProject.parse.<anonymous closure> (package:custom_lint/src/workspace.dart:983:7)
#1 _rootRunBinary (dart:async/zone.dart:1423:47)
#2 _CustomZone.runBinary (dart:async/zone.dart:1315:19)
#3 _FutureListener.handleError (dart:async/future_impl.dart:177:22)
#4 Future._propagateToListeners.handleError (dart:async/future_impl.dart:858:47)
#5 Future._propagateToListeners (dart:async/future_impl.dart:879:13)
#6 Future._completeError (dart:async/future_impl.dart:655:5)
<asynchronous suspension> Rendering the lints in dart filesWhile I was running this branch's code locally, I was getting the expected output within my console. flutter pub run custom_lint -- --watch
Deprecated. Use `dart run` instead.
Building package executable...
Built custom_lint:custom_lint.
The Dart VM service is listening on http://127.0.0.1:60473/b3vah13LFvE=/
The Dart DevTools debugger and profiler is available at: http://127.0.0.1:60473/b3vah13LFvE=/devtools?uri=ws://127.0.0.1:60473/b3vah13LFvE=/ws
Analyzing... 0.0s
bloc_no_public_fields/bloc_no_public_fields.dart:12:3 • This field should not be public. • cs_bloc_no_public_fields • INFO
bloc_no_public_fields/bloc_no_public_fields.dart:14:3 • This field should not be public. • cs_bloc_no_public_fields • INFO
2 issues found.
Custom lint runner commands:
r: Force re-lint
q: Quit
However, within the file, the lint was not visible. This may have something to do with the "other instance"? |
@@ -278,7 +278,8 @@ Analyzing... | |||
'dependency conflict', | |||
() async { | |||
// Create two packages with the same name but different paths | |||
final workspace = await createSimpleWorkspace(['dep', 'dep']); | |||
final workspace = | |||
await createSimpleWorkspace(['dep', 'dep'], local: true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a trailling comma, then format :)
await createSimpleWorkspace(['dep', 'dep'], local: true); | |
await createSimpleWorkspace(['dep', 'dep'], local: true,); |
@@ -275,8 +276,10 @@ Future<Directory> createSimpleWorkspace( | |||
Future<Directory> createWorkspace( | |||
Map<String, Pubspec> pubspecs, { | |||
bool withPackageConfig = true, | |||
bool withNestedAnalysisOptions = false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems unused
final pubspecFile = directory.pubspec.existsSync(); | ||
if (pubspecFile) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
final pubspecFile = directory.pubspec.existsSync(); | |
if (pubspecFile) { | |
if (directory.pubspec.existsSync()) { |
final analysisFile = File( | ||
p.join(workspace.path, 'package', 'analysis_options.yaml'), | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use .dir('package').analysisOptions
); | ||
analysisFile.createSync(); | ||
analysisFile.writeAsStringSync(analysisOptionsWithCustomLintEnabled); | ||
final nestedAnalysisFile = File( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after some minor changes
Have you edited the analyzer_plugin/pubspec.yaml? |
I haven't, at least not intentionally. Is that a requirement to properly test |
@rrousselGit let me know if you have anything else for me to do here 😊 |
@rrousselGit Is there an ETA when this will get re-reviewed/merged in? Testing the lints with new pubspec files for every test is really cumbersome. Really looking forward to when this will get merged |
Tests aren't passing, so this can't be merged as is. |
Actually that could be related to the master issue. I'll come back to you in a few hours after I'm done fixing the CI on master |
Fixing the CI is a bit difficult apparently. I need to investigate why the CI is stuck forever at the moment. Ping me early next week if I couldn't merge this and forgot. |
LGTM, thanks! |
Short Description
fixes #148
Adds the support for nested analysis options when there is not an existing pubspec.yaml within the same directory.
Specifically: