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
# Tier-B data: default filesystem/Git/archive exclusions.
#
# Schema:
# [default_excludes]
# extensions = ["lowercase-extension-without-dot", ...]
# dirs = ["path-segment", ...]
# suffixes = [".suffix", ...]
# filenames = ["exact-filename", ...]
# filename_prefix_suffixes = [{ prefix = "lowercase-prefix", suffix = ".suffix" }, ...]
#
# Semantics:
# - The source crate consumes this file through one fail-closed loader.
# - `extensions` feed the walker/read binary-extension denylist.
# - `dirs`, `suffixes`, `filenames`, and `filename_prefix_suffixes` feed the
# default-exclude path classifier used by filesystem, archive, compressed,
# RAR/7z, and Git source traversal.
# - Structured extractors must keep their handled container formats absent from
# `extensions`; otherwise the extension read gate would skip them before
# extraction.
[]
= [
# Images
"png",
"jpg",
"jpeg",
"gif",
"bmp",
"ico",
"cur",
"icns",
"webp",
"svg",
# Audio/video
"mp3",
"mp4",
"avi",
"mov",
"mkv",
"flac",
"wav",
"ogg",
"webm",
# Native binaries
"exe",
"dll",
"so",
"dylib",
"o",
"a",
"lib",
"obj",
# Compiled/bytecode
"class",
"wasm",
"pyc",
"pyo",
"elc",
"beam",
# Legacy binary documents. ZIP-container office formats and PDFs have
# structured extractors and must stay absent here.
"doc",
"xls",
"ppt",
# Fonts
"ttf",
"otf",
"woff",
"woff2",
"eot",
# Database files
"db",
"sqlite",
"sqlite3",
# Disk images / firmware
"iso",
"img",
"bin",
"rom",
# Serialized data
"pickle",
"npy",
"npz",
"onnx",
"pb",
"tflite",
"pt",
"safetensors",
]
= [
".git",
"node_modules",
"target",
".cache",
"__pycache__",
".venv",
"venv",
".tox",
"dist",
"build",
"out",
".next",
".nuxt",
"vendor",
"swagger-ui",
"swagger",
]
= [
".chunk.js",
".bak",
".swp",
".tmp",
".map",
".cache",
]
# Case-insensitive substring markers of generated/minified bundles that can sit
# anywhere before the extension (`app.min.js`, `vendor.bundle.css`, `x.min.mjs`).
# `.min.` subsumes the former `.min.js`/`.min.css` suffixes; `.bundle.` subsumes
# `.bundle.js`. Consolidated here from a former inline gate in filesystem/extract.rs.
= [
".min.",
".bundle.",
]
= [
"package-lock.json",
"yarn.lock",
"pnpm-lock.yaml",
"cache.json",
"cargo.lock",
"go.sum",
"gemfile.lock",
"angular.json",
]
= [
{ = "tsconfig", = ".json" },
]