Add husky pre-commit hook for formatting and type checking

This commit is contained in:
Mario Zechner 2025-08-11 21:15:37 +02:00
parent e21a46e68f
commit 42bf7b4ae0
3 changed files with 94 additions and 46 deletions

21
.husky/pre-commit Executable file
View file

@ -0,0 +1,21 @@
#!/bin/sh
# Get list of staged files before running check
STAGED_FILES=$(git diff --cached --name-only)
# Run the check script (formatting, linting, and type checking)
echo "Running formatting, linting, and type checking..."
npm run check
if [ $? -ne 0 ]; then
echo "❌ Checks failed. Please fix the errors before committing."
exit 1
fi
# Restage files that were previously staged and may have been modified by formatting
for file in $STAGED_FILES; do
if [ -f "$file" ]; then
git add "$file"
fi
done
echo "✅ All pre-commit checks passed!"