Files
git.stella-ops.org/devops/tools/lint/implementor-guidelines.sh
2025-12-26 18:11:06 +02:00

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