From ddf29202e68d51c983563927d4dd633186c30c11 Mon Sep 17 00:00:00 2001 From: pemontto Date: Mon, 21 Apr 2025 11:22:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=AB=20Add=20venv=20to=20exclude=20patt?= =?UTF-8?q?erns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 7f4f631..e0ccc82 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ DEFAULT_INCLUDE_PATTERNS = { } DEFAULT_EXCLUDE_PATTERNS = { - "*test*", "tests/*", "docs/*", "examples/*", "v1/*", + "venv/*", ".venv/*", "*test*", "tests/*", "docs/*", "examples/*", "v1/*", "dist/*", "build/*", "experimental/*", "deprecated/*", "legacy/*", ".git/*", ".github/*", ".next/*", ".vscode/*", "obj/*", "bin/*", "node_modules/*", "*.log" }