From a47fbb3c7277bdad74717a04ba671b958d03a570 Mon Sep 17 00:00:00 2001 From: TRACTION <19631364+iamtraction@users.noreply.github.com> Date: Sun, 14 May 2023 00:28:14 +0530 Subject: [PATCH] chore: linting Signed-off-by: TRACTION <19631364+iamtraction@users.noreply.github.com> --- src/migrate.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/migrate.ts b/src/migrate.ts index 93f5fe930..c76d73156 100644 --- a/src/migrate.ts +++ b/src/migrate.ts @@ -168,12 +168,12 @@ const main = () => { const [ , , command ] = process.argv; switch (command.toLowerCase()) { - case Commands.Filters: return filters(); - case Commands.v10: return v10(); - default: - throw new Error("You need to specify a migration command.", { - cause: "None of the valid commands were used: " + Object.values(Commands).join(" / "), - }); + case Commands.Filters: return filters(); + case Commands.v10: return v10(); + default: + throw new Error("You need to specify a migration command.", { + cause: "None of the valid commands were used: " + Object.values(Commands).join(" / "), + }); } };