Skip to content

Commit 5e38c9a

Browse files
committed
🔧 | Update ignored files list
1 parent 5a6f12d commit 5e38c9a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@
6969
"type": "array",
7070
"default": [
7171
".git",
72-
"node_modules"
72+
"node_modules",
73+
"*.log",
74+
".DS_Store",
75+
"tmp"
7376
],
7477
"description": "List of files and folders to ignore when generating the file tree."
7578
},

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ConfigurationManager {
1111

1212
get defaultConfig() {
1313
return {
14-
ignoredItems: ['node_modules', '.git'],
14+
ignoredItems: ['node_modules', '.git', '*.log', '.DS_Store', 'tmp'],
1515
ignoredBy: 'ignoredItems',
1616
indent: 1,
1717
showFileSize: false,

0 commit comments

Comments
 (0)