Skip to content

Commit 718594f

Browse files
committed
fix: added exluded items to allCode script
1 parent 4b5dcd3 commit 718594f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

allcode.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33

44
# Directories to exclude (won't be recursed into) - comparison done case-insensitively.
5-
EXCLUDE_DIRS = {"node_modules", ".git", "dist", ".github"}
5+
EXCLUDE_DIRS = {"node_modules", ".git", ".github", "dist"}
66

77
# Files to exclude (by exact name, case-insensitive)
88
EXCLUDE_FILES = {
@@ -16,6 +16,7 @@
1616
".prettierrc",
1717
".prettierrc.json",
1818
".prettierrc.js",
19+
".env.development",
1920
"package-lock.json",
2021
"allcode.py",
2122
"readme.md",

0 commit comments

Comments
 (0)