From fee25b7e35067d94de822e840253a76f95e9a174 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Wed, 2 Oct 2024 20:09:30 +0300 Subject: [PATCH] chore: amend .gitignore and flake8 excludes --- .gitignore | 1 + setup.cfg | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index c452eb6d3..51a09e5f6 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ __pycache__/ /.vscode/ /build /venv +/.venv diff --git a/setup.cfg b/setup.cfg index 0016a1517..e7e3ea54c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -94,6 +94,10 @@ release = [flake8] # Line length according to Black rules max-line-length = 88 +# Skip some directories +exclude = + .* + build # Ignore rules which conflict with Black ignore = # C408 Unnecessary dict call - rewrite as a literal.