Skip to content

Commit 7e6b1a6

Browse files
author
Veetaha
committed
vscode: npm run fix
1 parent 1e73811 commit 7e6b1a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

editors/code/src/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class Config {
173173
name: "rust-analyzer",
174174
owner: "rust-analyzer"
175175
}
176-
}
176+
};
177177
}
178178

179179
get nightlyVsixSource(): ArtifactSource.GithubRelease {
@@ -240,7 +240,7 @@ export class StringStorage {
240240
constructor(
241241
private readonly key: string,
242242
private readonly storage: vscode.Memento
243-
) {}
243+
) { }
244244

245245
get(): null | string {
246246
const tag = this.storage.get(this.key, null);
@@ -257,7 +257,7 @@ export class DateStorage {
257257
constructor(
258258
private readonly key: string,
259259
private readonly storage: vscode.Memento
260-
) {}
260+
) { }
261261

262262
get(): null | Date {
263263
const date = this.storage.get(this.key, null);

editors/code/src/installation/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const tryDownloadNightlyExtension = notReentrant(async function tryDownloadNight
110110

111111
const vsixPath = path.join(vsixSource.dir, vsixSource.file);
112112

113-
await vscodeInstallExtensionFromVsix(vsixPath)
113+
await vscodeInstallExtensionFromVsix(vsixPath);
114114
await config.installedNightlyExtensionReleaseDate.set(releaseInfo.releaseDate);
115115
await fs.unlink(vsixPath);
116116

0 commit comments

Comments
 (0)