From 7e6b1a60c3d7b20e1b4cee2ab210b617e359a002 Mon Sep 17 00:00:00 2001 From: Veetaha Date: Mon, 9 Mar 2020 20:04:11 +0200 Subject: vscode: npm run fix --- editors/code/src/config.ts | 6 +++--- editors/code/src/installation/extension.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index e2b0f6f84..b5c07876b 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -173,7 +173,7 @@ export class Config { name: "rust-analyzer", owner: "rust-analyzer" } - } + }; } get nightlyVsixSource(): ArtifactSource.GithubRelease { @@ -240,7 +240,7 @@ export class StringStorage { constructor( private readonly key: string, private readonly storage: vscode.Memento - ) {} + ) { } get(): null | string { const tag = this.storage.get(this.key, null); @@ -257,7 +257,7 @@ export class DateStorage { constructor( private readonly key: string, private readonly storage: vscode.Memento - ) {} + ) { } get(): null | Date { const date = this.storage.get(this.key, null); diff --git a/editors/code/src/installation/extension.ts b/editors/code/src/installation/extension.ts index 7709cd3cd..7eab68852 100644 --- a/editors/code/src/installation/extension.ts +++ b/editors/code/src/installation/extension.ts @@ -110,7 +110,7 @@ const tryDownloadNightlyExtension = notReentrant(async function tryDownloadNight const vsixPath = path.join(vsixSource.dir, vsixSource.file); - await vscodeInstallExtensionFromVsix(vsixPath) + await vscodeInstallExtensionFromVsix(vsixPath); await config.installedNightlyExtensionReleaseDate.set(releaseInfo.releaseDate); await fs.unlink(vsixPath); -- cgit v1.2.3