8 lines
252 B
Bash
8 lines
252 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Stub lint: enforce docs tag placeholder until full checks land.
|
|
if git diff --cached --name-only | grep -q '^docs/'; then
|
|
echo "[stub] docs touched: ensure commit includes 'docs:' trailer (value or 'n/a')"
|
|
fi
|