From 755e76733dfd257997bc039727697c8000b38aa6 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Thu, 22 May 2025 21:57:33 -0400 Subject: [PATCH] update pattern --- main.py | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/main.py b/main.py index bc881a1..dbba523 100644 --- a/main.py +++ b/main.py @@ -9,16 +9,30 @@ dotenv.load_dotenv() # Default file patterns DEFAULT_INCLUDE_PATTERNS = { "*.py", "*.js", "*.jsx", "*.ts", "*.tsx", "*.go", "*.java", "*.pyi", "*.pyx", - "*.c", "*.cc", "*.cpp", "*.h", "*.md", "*.rst", "Dockerfile", - "Makefile", "*.yaml", "*.yml", + "*.c", "*.cc", "*.cpp", "*.h", "*.md", "*.rst", "*Dockerfile", + "*Makefile", "*.yaml", "*.yml", } DEFAULT_EXCLUDE_PATTERNS = { - "assets/*", "data/*", "examples/*", "images/*", "public/*", "static/*", "temp/*", - "docs/*", - "venv/*", ".venv/*", "*test*", "tests/*", "docs/*", "examples/*", "v1/*", - "dist/*", "build/*", "experimental/*", "deprecated/*", "misc/*", - "legacy/*", ".git/*", ".github/*", ".next/*", ".vscode/*", "obj/*", "bin/*", "node_modules/*", "*.log" + "assets/*", "data/*", "images/*", "public/*", "static/*", "temp/*", + "*docs/*", + "*venv/*", + "*.venv/*", + "*test*", + "*tests/*", + "*examples/*", + "v1/*", + "*dist/*", + "*build/*", + "*experimental/*", + "*deprecated/*", + "*misc/*", + "*legacy/*", + ".git/*", ".github/*", ".next/*", ".vscode/*", + "*obj/*", + "*bin/*", + "*node_modules/*", + "*.log" } # --- Main Function ---