From 950fb879e607d79a6e12e3fb59dad7b185963bd5 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Sun, 15 Mar 2026 11:48:33 -0500 Subject: [PATCH] chore: remove deprecated husky v9 shim lines Husky v9+ no longer needs the shebang or sourcing husky.sh. These lines will fail in husky v10. Co-Authored-By: Claude Opus 4.6 (1M context) --- .husky/pre-commit | 3 --- .husky/pre-push | 3 --- 2 files changed, 6 deletions(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 36af219..2312dc5 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - npx lint-staged diff --git a/.husky/pre-push b/.husky/pre-push index 9fe9487..4a0f0e8 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - pnpm typecheck && pnpm lint && pnpm format:check