summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authorDavid Smith <smithdc@gmail.com>2025-06-25 21:40:07 +0100
committernessita <124304+nessita@users.noreply.github.com>2025-08-05 12:18:19 -0300
commit7f9bf357feac06bb34017e1f6c7a7730b1991ede (patch)
treeca1e1b08de5b2e204e40e4573d69a3e7ea1e7b7e /docs/Makefile
parentcba73281966c816824c9bfa028a1bf44e188ded2 (diff)
Refs #36485 -- Grouped docs checks under a unified make check target.
Added a new 'check' rule to the docs Makefile which runs both the black and spelling checks.
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile
index bbdd2bb4c8..9935ad09e5 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -174,3 +174,7 @@ black:
| xargs blacken-docs --rst-literal-block; echo $$? > "$(BUILDDIR)/black/output.txt"
@echo
@echo "Code blocks reformatted"
+
+check: spelling black
+ @echo
+ @echo "Style and spelling checks completed."