From 01893df80dd077217dba7b8f1ea53e0f944e33d1 Mon Sep 17 00:00:00 2001 From: James Braza Date: Sun, 28 Jan 2024 23:27:28 -0800 Subject: [PATCH] Exclude venv folders in flake8 (#116) Co-authored-by: jsh9 <25124332+jsh9@users.noreply.github.com> --- pyproject.toml | 2 +- tox.ini | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8118431..8ede5a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,5 +8,5 @@ wrap-line-with-long-string = true [tool.pydoclint] style = 'numpy' -exclude = '\.git|\.tox|tests/data|unparser\.py' +exclude = '\.git|.?venv|\.tox|tests/data|unparser\.py' require-return-section-when-returning-nothing = true diff --git a/tox.ini b/tox.ini index 4e7bb0d..c49a986 100644 --- a/tox.ini +++ b/tox.ini @@ -101,5 +101,6 @@ statistics = true max-complexity = 10 exclude = .*, + venv/*, tests/data/*, unparser.py