From 8f457f3ae82cc434a1e8f2c69678fc79335ef115 Mon Sep 17 00:00:00 2001 From: jo Date: Fri, 6 Oct 2023 16:17:01 +0200 Subject: [PATCH 1/2] chore: add venv dependency to lint-docs target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f358c91..8c9df6ef 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ venv: lint: venv venv/bin/pylint plugins -lint-docs: +lint-docs: venv venv/bin/antsibull-docs lint-collection-docs --plugin-docs . clean: From 6604fbf2f992c25826387a3d60c574de80b71b75 Mon Sep 17 00:00:00 2001 From: jo Date: Fri, 6 Oct 2023 16:23:13 +0200 Subject: [PATCH 2/2] chore: speed up lint-docs --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c9df6ef..51a8912a 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,11 @@ lint: venv venv/bin/pylint plugins lint-docs: venv - venv/bin/antsibull-docs lint-collection-docs --plugin-docs . + venv/bin/antsibull-docs lint-collection-docs \ + --plugin-docs \ + --validate-collection-refs self \ + --skip-rstcheck \ + . clean: git clean -xdf \