Merge pull request #24 from pemontto/exclude-venv

🚫 Add venv to exclude patterns
This commit is contained in:
Zachary Huang
2025-04-21 08:52:17 -04:00
committed by GitHub
+1 -1
View File
@@ -14,7 +14,7 @@ DEFAULT_INCLUDE_PATTERNS = {
} }
DEFAULT_EXCLUDE_PATTERNS = { DEFAULT_EXCLUDE_PATTERNS = {
"*test*", "tests/*", "docs/*", "examples/*", "v1/*", "venv/*", ".venv/*", "*test*", "tests/*", "docs/*", "examples/*", "v1/*",
"dist/*", "build/*", "experimental/*", "deprecated/*", "dist/*", "build/*", "experimental/*", "deprecated/*",
"legacy/*", ".git/*", ".github/*", ".next/*", ".vscode/*", "obj/*", "bin/*", "node_modules/*", "*.log" "legacy/*", ".git/*", ".github/*", ".next/*", ".vscode/*", "obj/*", "bin/*", "node_modules/*", "*.log"
} }