From c43386031ddc1e2b03242280d4e019dfd992c2db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=E1=BA=A3i?= Date: Tue, 1 Oct 2024 18:33:13 +0700 Subject: [PATCH] refactor: break a long line into multiple lines (#8592) --- .../plugin-commands-script-runners/src/run.ts | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/exec/plugin-commands-script-runners/src/run.ts b/exec/plugin-commands-script-runners/src/run.ts index db5266ac97..8c7d9572bb 100644 --- a/exec/plugin-commands-script-runners/src/run.ts +++ b/exec/plugin-commands-script-runners/src/run.ts @@ -156,12 +156,24 @@ For options that may be used with `-r`, see "pnpm help recursive"', export type RunOpts = & Omit & { recursive?: boolean } - & Pick + & Pick & ( - & { recursive?: false } - & Partial> - | { recursive: true } - & Required> + | { recursive?: false } & Partial> + | { recursive: true } & Required> ) & { argv?: {