26 lines
746 B
Bash
Executable File
26 lines
746 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# Ensure hooks run from repo root (we intentionally do not source Husky internals).
|
|
ROOT="$(git rev-parse --show-toplevel 2>/dev/null)"
|
|
if [ -n "$ROOT" ]; then
|
|
cd "$ROOT" || exit 1
|
|
fi
|
|
|
|
# Prefer local binaries (prettier/lint-staged/etc.)
|
|
export PATH="$PWD/node_modules/.bin:$PATH"
|
|
|
|
# Check if Husky is disabled via environment variable
|
|
if [ "$HUSKY_ENABLED" = "false" ]; then
|
|
echo "⚠️ Husky disabled via HUSKY_ENABLED=false"
|
|
echo "💡 To re-enable: unset HUSKY_ENABLED or export HUSKY_ENABLED=true"
|
|
exit 0
|
|
fi
|
|
|
|
echo "🔐 Scanning staged changes for secrets..."
|
|
bash scripts/secret-scan-staged.sh
|
|
|
|
echo "🐶 Running pre-commit hooks for common platform..."
|
|
|
|
# Run lint-staged on staged files
|
|
pnpm exec lint-staged
|