Files
setup-kubectl/.husky/pre-commit

9 lines
204 B
Plaintext
Raw Normal View History

set +e
npm test
# Run format check
npm run format-check || {
echo ""
echo "❌ Formatting check failed."
echo "💡 Run 'npm run format' or 'prettier --write .' to fix formatting issues."
exit 1
}