From 4f5c650e93d8d6f1b5e3e49a71c6fec30d90f9c3 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Sun, 6 Oct 2024 14:29:20 +0100 Subject: [PATCH] Ignore D004 errors in doc8 so it works on Windows --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4922732..8486360 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -305,6 +305,9 @@ ignore_path = [ "./src/*/_setuptools_scm_version.txt", ] +# See https://github.com/PyCQA/doc8/issues/78 +ignore = [ "D004" ] + [tool.vulture] # Ideally we would limit the paths to the source code where we want to ignore names, # but Vulture does not enable this.