summaryrefslogtreecommitdiffstats
path: root/documentation/Makefile
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2024-03-30 17:32:47 +0100
committerSteve Sakoman <steve@sakoman.com>2024-04-19 04:50:39 -0700
commita6fdddf8c44367a5bd82ba9d979e708bd710db79 (patch)
tree887e4a04e9bc399663e8807961e5e259ba195427 /documentation/Makefile
parentccbfa27d19f6dbce2c9880f128ed1eac0cf30a5a (diff)
downloadpoky-a6fdddf8c44367a5bd82ba9d979e708bd710db79.tar.gz
manuals: add initial sphinx-lint support
Makes it possible to catch errors not reported by sphinx, such as idle spaces. After customization, this should be used to enforce our syntax conventions, such as two spaces after a "-" character to introduce a list item. Just run "make sphinx-lint". (From yocto-docs rev: a735549a764f7cfebdc7534761b4d75dc523371a) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index 20dab5725c..4e0af4bd30 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -53,6 +53,9 @@ stylecheck:
53 vale sync 53 vale sync
54 vale $(VALEOPTS) $(VALEDOCS) 54 vale $(VALEOPTS) $(VALEDOCS)
55 55
56sphinx-lint:
57 sphinx-lint $(SOURCEDIR)
58
56epub: $(PNGs) 59epub: $(PNGs)
57 @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 60 @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
58 61