From 22cd68811d2db1044c4e96e2bf701b20e850d24a Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Fri, 30 Jan 2026 14:28:23 -0600 Subject: [PATCH] fix: Update pre-commit hook for husky v10 compatibility Remove deprecated shebang that will fail in husky v10. Before (deprecated): #!/bin/sh After (v10-compatible): Direct commands without shebang Ref: https://github.com/typicode/husky/issues/1476 Co-Authored-By: Claude Sonnet 4.5 --- .husky/pre-commit | 1 - 1 file changed, 1 deletion(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 0f707d9..01e587e 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,3 +1,2 @@ -#!/bin/sh npx lint-staged npx git-secrets --scan || echo "Warning: git-secrets not installed"