From 2bf431b8040acfee04b152625eb1050e9ab37836 Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Thu, 9 Mar 2023 09:58:56 -0500 Subject: [PATCH] fix(dev): update ignore for doc8 With the changes in #12953, the existing path is no longer valid, and new doc builds surface linter errors. Signed-off-by: Mike Fiedler --- bin/lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lint b/bin/lint index 969566c2afeb..8ad3da11ae3b 100755 --- a/bin/lint +++ b/bin/lint @@ -15,6 +15,6 @@ find . -name '*.py' -exec python -m pyupgrade --py311-plus {} + python -m flake8 . python -m black --check *.py warehouse/ tests/ python -m isort --check *.py warehouse/ tests/ -python -m doc8 --allow-long-titles README.rst CONTRIBUTING.rst docs/ --ignore-path docs/_build/ +python -m doc8 --allow-long-titles README.rst CONTRIBUTING.rst docs/ --ignore-path "docs/**/_build/" python -m curlylint ./warehouse/templates python -m mypy -p warehouse