update pattern

This commit is contained in:
zachary62
2025-05-22 21:57:33 -04:00
parent 2afe6f696a
commit 755e76733d
+21 -7
View File
@@ -9,16 +9,30 @@ dotenv.load_dotenv()
# Default file patterns # Default file patterns
DEFAULT_INCLUDE_PATTERNS = { DEFAULT_INCLUDE_PATTERNS = {
"*.py", "*.js", "*.jsx", "*.ts", "*.tsx", "*.go", "*.java", "*.pyi", "*.pyx", "*.py", "*.js", "*.jsx", "*.ts", "*.tsx", "*.go", "*.java", "*.pyi", "*.pyx",
"*.c", "*.cc", "*.cpp", "*.h", "*.md", "*.rst", "Dockerfile", "*.c", "*.cc", "*.cpp", "*.h", "*.md", "*.rst", "*Dockerfile",
"Makefile", "*.yaml", "*.yml", "*Makefile", "*.yaml", "*.yml",
} }
DEFAULT_EXCLUDE_PATTERNS = { DEFAULT_EXCLUDE_PATTERNS = {
"assets/*", "data/*", "examples/*", "images/*", "public/*", "static/*", "temp/*", "assets/*", "data/*", "images/*", "public/*", "static/*", "temp/*",
"docs/*", "*docs/*",
"venv/*", ".venv/*", "*test*", "tests/*", "docs/*", "examples/*", "v1/*", "*venv/*",
"dist/*", "build/*", "experimental/*", "deprecated/*", "misc/*", "*.venv/*",
"legacy/*", ".git/*", ".github/*", ".next/*", ".vscode/*", "obj/*", "bin/*", "node_modules/*", "*.log" "*test*",
"*tests/*",
"*examples/*",
"v1/*",
"*dist/*",
"*build/*",
"*experimental/*",
"*deprecated/*",
"*misc/*",
"*legacy/*",
".git/*", ".github/*", ".next/*", ".vscode/*",
"*obj/*",
"*bin/*",
"*node_modules/*",
"*.log"
} }
# --- Main Function --- # --- Main Function ---