This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
token-gated-economy/.githooks/pre-commit

19 lines
438 B
Bash
Executable File

#!/usr/bin/env bash
# Pre-commit hook: typecheck + lint
# Activated by: make install
set -euo pipefail
echo "[pre-commit] Running typecheck…"
if ! pnpm run typecheck; then
echo "[pre-commit] FAILED: typecheck errors — commit blocked." >&2
exit 1
fi
echo "[pre-commit] Running lint…"
if ! pnpm run lint; then
echo "[pre-commit] FAILED: lint errors — commit blocked." >&2
exit 1
fi
echo "[pre-commit] All checks passed."