diff --git a/AGENTS.md b/AGENTS.md index ccd6a27..7259681 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -10,7 +10,7 @@ CONTRIBUTING.md # how to contribute ## Commands - `make docs` — render the manual locally with Docker -- `make test-docs` — render in fail-on-log mode; use this to validate any change before committing +- `make test-docs` — render in minimal-test mode (the same validation CI runs); use this to validate any change before committing - `pre-commit run --all-files` — apply the whitespace hooks (`trailing-whitespace`, `end-of-file-fixer`) configured in `.pre-commit-config.yaml`; `pre-commit install` wires them into `git commit` diff --git a/Makefile b/Makefile index 912dde8..cf820b3 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: help help: ## Displays this list of targets with descriptions - @echo "The following commands are available:\n" - @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}' + @echo "The following commands are available:\n" + @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}' .PHONY: docs docs: ## Generate projects documentation (from "Documentation" directory)