Skip to content

Commit 755e767

Browse files
committed
update pattern
1 parent 2afe6f6 commit 755e767

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

main.py

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,30 @@
99
# Default file patterns
1010
DEFAULT_INCLUDE_PATTERNS = {
1111
"*.py", "*.js", "*.jsx", "*.ts", "*.tsx", "*.go", "*.java", "*.pyi", "*.pyx",
12-
"*.c", "*.cc", "*.cpp", "*.h", "*.md", "*.rst", "Dockerfile",
13-
"Makefile", "*.yaml", "*.yml",
12+
"*.c", "*.cc", "*.cpp", "*.h", "*.md", "*.rst", "*Dockerfile",
13+
"*Makefile", "*.yaml", "*.yml",
1414
}
1515

1616
DEFAULT_EXCLUDE_PATTERNS = {
17-
"assets/*", "data/*", "examples/*", "images/*", "public/*", "static/*", "temp/*",
18-
"docs/*",
19-
"venv/*", ".venv/*", "*test*", "tests/*", "docs/*", "examples/*", "v1/*",
20-
"dist/*", "build/*", "experimental/*", "deprecated/*", "misc/*",
21-
"legacy/*", ".git/*", ".github/*", ".next/*", ".vscode/*", "obj/*", "bin/*", "node_modules/*", "*.log"
17+
"assets/*", "data/*", "images/*", "public/*", "static/*", "temp/*",
18+
"*docs/*",
19+
"*venv/*",
20+
"*.venv/*",
21+
"*test*",
22+
"*tests/*",
23+
"*examples/*",
24+
"v1/*",
25+
"*dist/*",
26+
"*build/*",
27+
"*experimental/*",
28+
"*deprecated/*",
29+
"*misc/*",
30+
"*legacy/*",
31+
".git/*", ".github/*", ".next/*", ".vscode/*",
32+
"*obj/*",
33+
"*bin/*",
34+
"*node_modules/*",
35+
"*.log"
2236
}
2337

2438
# --- Main Function ---

0 commit comments

Comments
 (0)