feat: add Husky pre-commit hook for Biome checks - fixes #38

This commit is contained in:
GitHub Copilot
2025-05-07 14:48:27 -04:00
parent 6d91b331ab
commit 825ac2eb4e
7 changed files with 1255 additions and 3 deletions

6
.husky/pre-commit Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
echo "Running Biome checks before commit..."
npm run check || exit 1
echo "Biome checks passed!"