chore(format): oxfmt hooks-cli

This commit is contained in:
Peter Steinberger
2026-01-18 06:03:22 +00:00
parent d4bd387e0e
commit f5f7f47c81

View File

@@ -45,10 +45,7 @@ export type HooksUpdateOptions = {
dryRun?: boolean;
};
function mergeHookEntries(
pluginEntries: HookEntry[],
workspaceEntries: HookEntry[],
): HookEntry[] {
function mergeHookEntries(pluginEntries: HookEntry[], workspaceEntries: HookEntry[]): HookEntry[] {
const merged = new Map<string, HookEntry>();
for (const entry of pluginEntries) {
merged.set(entry.hook.name, entry);