We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 128490e commit d511490Copy full SHA for d511490
allcode.py
@@ -2,7 +2,7 @@
2
import os
3
4
# Directories to exclude (won't be recursed into) - comparison done case-insensitively.
5
-EXCLUDE_DIRS = {"node_modules", ".git"}
+EXCLUDE_DIRS = {"node_modules", ".git", "dist", ".github"}
6
7
# Files to exclude (by exact name, case-insensitive)
8
EXCLUDE_FILES = {
@@ -19,7 +19,9 @@
19
"package-lock.json",
20
"allcode.py",
21
"readme.md",
22
- "allcode.txt", # Exclude the output file
+ "allcode.txt",
23
+ ".env.development",
24
+ "vite-env.d.ts",
25
}
26
27
0 commit comments