-
Notifications
You must be signed in to change notification settings - Fork 265
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
Update to vscode-languageserver 9 #910
base: main
Are you sure you want to change the base?
Update to vscode-languageserver 9 #910
Conversation
@@ -27,6 +29,9 @@ | |||
applyEdit(paramOrEdit: ApplyWorkspaceEditParams | WorkspaceEdit): Promise<ApplyWorkspaceEditResponse> { | |||
throw new Error('Method not implemented.'); | |||
} | |||
fillServerCapabilities(capabilities: ServerCapabilities<any>): void { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
@@ -27,6 +29,9 @@ | |||
applyEdit(paramOrEdit: ApplyWorkspaceEditParams | WorkspaceEdit): Promise<ApplyWorkspaceEditResponse> { | |||
throw new Error('Method not implemented.'); | |||
} | |||
fillServerCapabilities(capabilities: ServerCapabilities<any>): void { |
Check warning
Code scanning / ESLint
Disallow the `any` type Warning test
@@ -37,23 +42,26 @@ | |||
getWorkspaceFolders(): Promise<WorkspaceFolder[]> { | |||
throw new Error('Method not implemented.'); | |||
} | |||
initialize(capabilities: ClientCapabilities): void { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
onDidChangeWorkspaceFolders: Event<WorkspaceFoldersChangeEvent>; | ||
onDidCreateFiles(handler: NotificationHandler<CreateFilesParams>): void { | ||
onDidCreateFiles(handler: NotificationHandler<CreateFilesParams>): Disposable { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
throw new Error('Method not implemented.'); | ||
} | ||
onDidRenameFiles(handler: NotificationHandler<RenameFilesParams>): void { | ||
onDidRenameFiles(handler: NotificationHandler<RenameFilesParams>): Disposable { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
throw new Error('Method not implemented.'); | ||
} | ||
onDidDeleteFiles(handler: NotificationHandler<DeleteFilesParams>): void { | ||
onDidDeleteFiles(handler: NotificationHandler<DeleteFilesParams>): Disposable { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
throw new Error('Method not implemented.'); | ||
} | ||
onWillCreateFiles(handler: RequestHandler<CreateFilesParams, WorkspaceEdit, never>): void { | ||
onWillCreateFiles(handler: RequestHandler<CreateFilesParams, WorkspaceEdit, never>): Disposable { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
throw new Error('Method not implemented.'); | ||
} | ||
onWillRenameFiles(handler: RequestHandler<RenameFilesParams, WorkspaceEdit, never>): void { | ||
onWillRenameFiles(handler: RequestHandler<RenameFilesParams, WorkspaceEdit, never>): Disposable { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
throw new Error('Method not implemented.'); | ||
} | ||
onWillDeleteFiles(handler: RequestHandler<DeleteFilesParams, WorkspaceEdit, never>): void { | ||
onWillDeleteFiles(handler: RequestHandler<DeleteFilesParams, WorkspaceEdit, never>): Disposable { |
Check warning
Code scanning / ESLint
Disallow unused variables Warning test
yarn.lock
Outdated
integrity sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg== | ||
[email protected]: | ||
version "8.1.0" | ||
resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz#cb9989c65e219e18533cc38e767611272d274c94" |
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.
The registry change is because whoever generated the old lockfile entries, has misconfigured yarn. By default yarn uses https://registry.yarnpkg.com
. To troubleshoot this issue, run yarn config list
.
Hi there, are there any updates on this? I'm currently using a different package that uses a newer |
5e63809
to
90146fe
Compare
What does this PR do?
Update
vscode-languageserver
to version 9.What issues does this PR fix or reference?
N/A
Is it tested? How?
npm test