1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# Example configuration for flatten-rust
# This file demonstrates various configuration options
# Basic configuration
[]
# Default output file
= "codebase.md"
# Number of processing threads (0 = auto-detect)
= 0
# Maximum file size to process in bytes (0 = unlimited)
= 104857600 # 100MB
# Show skipped folders in tree structure
= false
# Folders to skip during processing
[]
# Common development folders
= [
"node_modules",
".git",
"target",
"dist",
"build",
"vendor",
".vscode",
".idea",
"coverage",
".nyc_output",
".pytest_cache",
"__pycache__",
".mypy_cache",
".tox",
"venv",
".venv",
"env",
".env",
"node_modules",
".next",
".nuxt",
".output",
".angular",
"e2e",
".e2e",
]
# File extensions to skip (binary files)
[]
= [
"exe",
"dll",
"so",
"dylib",
"bin",
"img",
"iso",
"zip",
"tar",
"gz",
"7z",
"rar",
"bz2",
"xz",
"deb",
"rpm",
"dmg",
"pkg",
"msi",
"apk",
"ipa",
"jpg",
"jpeg",
"png",
"gif",
"bmp",
"tiff",
"webp",
"svg",
"ico",
"mp3",
"mp4",
"avi",
"mov",
"wmv",
"flv",
"webm",
"pdf",
"doc",
"docx",
"xls",
"xlsx",
"ppt",
"pptx",
"odt",
"ods",
"odp",
]
# Language-specific configurations
[]
# Rust-specific folders to skip
= [
"target/debug",
"target/release",
"target/doc",
"Cargo.lock",
]
# Rust-specific file extensions to include (not skip)
= [
"rs",
"toml",
]
[]
# JavaScript-specific folders to skip
= [
"node_modules",
".next",
".nuxt",
"dist",
"build",
".webpack",
".cache",
]
[]
# Python-specific folders to skip
= [
"__pycache__",
".pytest_cache",
".mypy_cache",
".tox",
"venv",
".venv",
"env",
".env",
".coverage",
"htmlcov",
]
# Project-specific configurations
[]
= [
"src",
"public",
"tests",
]
= [
"node_modules",
"dist",
".next",
]
[]
= [
"src",
"tests",
"benches",
"examples",
]
= [
"target",
"Cargo.lock",
]
# Performance tuning
[]
# Buffer size for file operations (in bytes)
= 8192
# Maximum number of files to process in parallel
= 1000
# Timeout for file operations (in seconds)
= 30
# Memory mapping threshold (files larger than this will use memory mapping)
= 1048576 # 1MB
# Output formatting
[]
# Include file timestamps
= false
# Include file sizes
= false
# Include file permissions
= false
# Format for file size display
= "human" # "human", "bytes", "kb", "mb"
# Color output (when supported)
= true
# Advanced options
[]
# Follow symbolic links
= false
# Maximum depth for directory traversal
= 0 # 0 = unlimited
# Include hidden files and folders
= false
# Case-sensitive matching for skip patterns
= false
# Regular expression patterns for advanced file filtering
[]
# Files matching these patterns will be skipped
= [
r".*\.log$",
r".*\.tmp$",
r".*\.swp$",
r".*~$",
r".*\.bak$",
]
# Directories matching these patterns will be skipped
= [
r".*\.git.*",
r".*\.svn.*",
r".*\.hg.*",
]