From 7ffb13cc3afd35aeb255f74ed7d98201e862006e Mon Sep 17 00:00:00 2001 From: JongKyung Lee Date: Thu, 10 Sep 2026 14:06:40 +0900 Subject: [PATCH] chore(cli): remove unused hooks directory setter --- packages/cli/src/config/hooks.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/cli/src/config/hooks.ts b/packages/cli/src/config/hooks.ts index dc7daa1d2c..307c022450 100644 --- a/packages/cli/src/config/hooks.ts +++ b/packages/cli/src/config/hooks.ts @@ -263,10 +263,6 @@ export function getStoredHooksDir(): string | null { return gitConfigGet(PREFERENCE_DIR_KEY, { local: true }); } -export function setStoredHooksDir(dir: string): { ok: boolean; error?: string } { - return gitConfigSet(PREFERENCE_DIR_KEY, dir); -} - function getStoredHooksPrefix(): string | null { const value = gitConfigGet(PREFERENCE_PREFIX_KEY, { local: true }); if (value == null) {