.PHONY: fmt fmt-check lint test check hooks fmt: npx prettier --write . fmt-check: npx prettier --check . lint: @echo "No linter configured for docs-only repo" test: @echo "No tests for docs-only repo" check: fmt-check @echo "All checks passed" hooks: echo '#!/bin/sh\nmake check' > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit docker: docker build .