7 lines
234 B
Makefile
7 lines
234 B
Makefile
|
.PHONY: docs-lint
|
||
|
|
||
|
docs-lint: ## Check documentation for common syntax errors.
|
||
|
# The `-W` option converts warnings to errors.
|
||
|
# The `-n` option enables "nit-picky" mode.
|
||
|
make -C docs/ clean && sphinx-build -Wn docs/ docs/_build/html
|