Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
noppej committed Nov 14, 2023
1 parent 60f1658 commit 9ca2e56
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

'use strict';

import * as child_process from 'child_process';
import * as childProcess from 'child_process';
import {existsSync} from 'fs';
import getPort from 'get-port';
import * as os from 'os';
Expand Down Expand Up @@ -506,11 +506,11 @@ class ProbeRSDebugAdapterServerDescriptorFactory implements vscode.DebugAdapterD
function startDebugServer(
command: string,
args: readonly string[],
options: child_process.SpawnOptionsWithoutStdio,
): Promise<child_process.ChildProcessWithoutNullStreams> {
var launchedDebugAdapter = child_process.spawn(command, args, options);
options: childProcess.SpawnOptionsWithoutStdio,
): Promise<childProcess.ChildProcessWithoutNullStreams> {
var launchedDebugAdapter = childProcess.spawn(command, args, options);

return new Promise<child_process.ChildProcessWithoutNullStreams>((resolve, reject) => {
return new Promise<childProcess.ChildProcessWithoutNullStreams>((resolve, reject) => {
function errorListener(error) {
reject(error);
}
Expand Down

0 comments on commit 9ca2e56

Please sign in to comment.