From 297568f36541d4fa0a1a68d9c2f3b5f9a7adbd11 Mon Sep 17 00:00:00 2001 From: Slowlife01 Date: Thu, 27 Mar 2025 10:53:35 +0700 Subject: [PATCH] style: format --- src/index.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 9fa6675..b0176f4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -108,9 +108,10 @@ for (const command of commands) { // Register all of the required options for (const opt of command?.options || []) { - buildCommand = opt.parse !== undefined ? - buildCommand.option(opt.arg, opt.description, opt.parse) : - buildCommand.option(opt.arg, opt.description); + buildCommand = + opt.parse !== undefined + ? buildCommand.option(opt.arg, opt.description, opt.parse) + : buildCommand.option(opt.arg, opt.description) } buildCommand = buildCommand.action(async (...arguments_) => {