1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2018-02-10 15:30:42 -05:00
parent b41a38afbb
commit 5c190606bf
4 changed files with 89 additions and 87 deletions

View File

@@ -11,6 +11,7 @@ const watch = args.some((val) => val === '--watch');
const dev = args.some((val) => val === '--dev');
if (watch) {
// tslint:disable-next-line
require('electron-reload')(__dirname, {});
}
@@ -25,5 +26,6 @@ windowMain.init().then(() => {
}).then(() => {
menuMain.init();
}, (e: any) => {
// tslint:disable-next-line
console.log(e);
});