Commit 6b8e204
committed
♻️ Improve file exclusion pattern precision
Update regex patterns to match file paths more accurately by anchoring
patterns to path boundaries. This prevents overly broad exclusions
where patterns could match partial filenames or subdirectories.
- Anchor directory patterns with (^|/) prefix and (/|$) suffix
- Anchor .DS_Store with $ suffix to match complete filenames
- Ensures exclusions only apply to intended files and directories1 parent b398b2b commit 6b8e204
1 file changed
+10
-10
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
75 | | - | |
76 | | - | |
77 | | - | |
78 | | - | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
| |||
0 commit comments