From 420f0a5a6bc2ffc686d9c48b8a564ea71b3cee45 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 12 Feb 2018 16:12:18 -0500 Subject: [PATCH] lint fixes --- src/main/menu.main.ts | 8 ++++---- src/main/updater.main.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/menu.main.ts b/src/main/menu.main.ts index aae48aff7b..9b75c0b343 100644 --- a/src/main/menu.main.ts +++ b/src/main/menu.main.ts @@ -353,9 +353,9 @@ export class MenuMain { label: this.i18nService.t('about'), click: () => { const aboutInformation = this.i18nService.t('version', app.getVersion()) + - '\nShell ' + process.versions['electron'] + - '\nRenderer ' + process.versions['chrome'] + - '\nNode ' + process.versions['node'] + + '\nShell ' + process.versions.electron + + '\nRenderer ' + process.versions.chrome + + '\nNode ' + process.versions.node + '\nArchitecture ' + process.arch; const result = dialog.showMessageBox(this.windowMain.win, { title: 'Bitwarden', @@ -369,7 +369,7 @@ export class MenuMain { clipboard.writeText(aboutInformation); } }, - } + }, ]); } diff --git a/src/main/updater.main.ts b/src/main/updater.main.ts index 4ea51e2f50..abb6b49e49 100644 --- a/src/main/updater.main.ts +++ b/src/main/updater.main.ts @@ -1,4 +1,4 @@ -import { autoUpdater } from "electron-updater" +import { autoUpdater } from 'electron-updater'; const UpdaterCheckInitalDelay = 5 * 1000; // 5 seconds const UpdaterCheckInterval = 12 * 60 * 60 * 1000; // 12 hours