Skip to content

Commit 5a05f66

Browse files
committed
yarn lint fixes
1 parent a85299f commit 5a05f66

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Api } from "coder/site/src/api/api"
22
import { ProvisionerJobLog, Workspace } from "coder/site/src/api/typesGenerated"
33
import fs from "fs/promises"
4-
import * as os from "os"
54
import { ProxyAgent } from "proxy-agent"
65
import * as vscode from "vscode"
76
import * as ws from "ws"

src/remote.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class Remote {
3333
private readonly storage: Storage,
3434
private readonly commands: Commands,
3535
private readonly mode: vscode.ExtensionMode,
36-
private coderVersion: semver.SemVer | null = null
36+
private coderVersion: semver.SemVer | null = null,
3737
) {}
3838

3939
private async confirmStart(workspaceName: string): Promise<boolean> {

src/util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import url from "url"
21
import * as os from "os"
2+
import url from "url"
33

44
export interface AuthorityParts {
55
agent: string | undefined
@@ -68,4 +68,4 @@ export function toSafeHost(rawUrl: string): string {
6868
export function expandPath(input: string): string {
6969
const userHome = os.homedir()
7070
return input.replace(/\${userHome}/g, userHome)
71-
}
71+
}

0 commit comments

Comments
 (0)