Files
LLMScaffolding/.githooks/pre-commit
Charles N Wyble 408db0d0cc
Some checks failed
CI / checks (push) Has been cancelled
CI / checks (pull_request) Has been cancelled
chore(ci): bootstrap CI + hooks
Squash-merge bootstrap-cicd into integration
2025-09-10 21:48:32 +00:00

12 lines
209 B
Bash

#!/usr/bin/env bash
set -euo pipefail
echo "> pre-commit: format + lint + commit message check"
# Run format and lint inside the CI container
scripts/ci format
scripts/ci lint
echo "pre-commit completed."