1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 03:33:54 +00:00

Add eslint (#496)

This commit is contained in:
Oscar Hinton
2022-03-03 18:24:41 +01:00
committed by GitHub
parent dd6a0cab7f
commit b4555039d8
48 changed files with 2703 additions and 1022 deletions

View File

@@ -1,10 +1,8 @@
import * as chalk from "chalk";
import * as program from "commander";
import { Response } from "jslib-node/cli/models/response";
import { Main } from "./bw";
import { ConfirmCommand } from "./commands/confirm.command";
import { CreateCommand } from "./commands/create.command";
import { DeleteCommand } from "./commands/delete.command";
@@ -15,10 +13,8 @@ import { ImportCommand } from "./commands/import.command";
import { ListCommand } from "./commands/list.command";
import { RestoreCommand } from "./commands/restore.command";
import { ShareCommand } from "./commands/share.command";
import { CliUtils } from "./utils";
import { Program } from "./program";
import { CliUtils } from "./utils";
const writeLn = CliUtils.writeLn;