Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/amazonq/src/lsp/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import vscode, { env, version } from 'vscode'
import * as nls from 'vscode-nls'
import * as cp from 'child_process'
import * as cp from 'child_process' // eslint-disable-line no-restricted-imports -- language server options expect actual child process
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could add something like ChildProcess.proc to return the nodejs object?

import * as crypto from 'crypto'
import { LanguageClient, LanguageClientOptions, ServerOptions, TransportKind } from 'vscode-languageclient'
import { registerInlineCompletion } from '../inline/completion'
Expand Down
Loading