1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Add eslint (#1369)

This commit is contained in:
Oscar Hinton
2022-02-24 20:50:19 +01:00
committed by GitHub
parent 233f876bbb
commit 3aa52a5537
67 changed files with 2780 additions and 782 deletions

View File

@@ -10,7 +10,7 @@ if (
process.argv.some((arg) => arg.indexOf("chrome-extension://") !== -1 || arg.indexOf("{") !== -1)
) {
if (process.platform === "darwin") {
// tslint:disable-next-line
// eslint-disable-next-line
const app = require("electron").app;
app.on("ready", () => {
@@ -27,7 +27,7 @@ if (
const proxy = new NativeMessagingProxy();
proxy.run();
} else {
// tslint:disable-next-line
// eslint-disable-next-line
const Main = require("./main").Main;
const main = new Main();