From 77b955b5f4cf56b760734eeac3aecfbd9671f503 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Thu, 26 Jan 2023 11:03:26 -0500 Subject: [PATCH] Configure sphinx-lint Done the same way as in rockcraft Co-authored-by: Tiago Nobrega --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 59683e5b4b..b885f1f6c6 100644 --- a/tox.ini +++ b/tox.ini @@ -95,5 +95,5 @@ commands = sphinx-build {posargs:-b html} {tox_root}/docs {tox_root}/docs/_build [testenv:lint-docs] description = Lint the documentation with sphinx-lint base = docs -commands = sphinx-lint {posargs} docs/ +commands = sphinx-lint --ignore docs/_build --max-line-length 80 -e all {posargs} docs/ labels = lint