From 31973a2f012ae44ab7a59c13babd0a7bec233913 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Tue, 4 Oct 2022 09:59:42 -0700 Subject: [PATCH] Exclude .venv from flake8 Virtual environment directories are often named `.venv` by convention. --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 9697fc96..3a8b87a8 100644 --- a/.flake8 +++ b/.flake8 @@ -1,3 +1,3 @@ [flake8] ignore = E402,E731,W503,W504,E252 -exclude = .git,__pycache__,build,dist,.eggs,.github,.local +exclude = .git,__pycache__,build,dist,.eggs,.github,.local,.venv