-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy path.gitattributes
More file actions
280 lines (239 loc) · 9.09 KB
/
Copy path.gitattributes
File metadata and controls
280 lines (239 loc) · 9.09 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# Auto detect text files and perform LF normalization
* text=auto
# =============================================================================
# Git Configuration Files - UTF-8 Encoding Enforcement
# =============================================================================
.gitignore text working-tree-encoding=UTF-8 eol=lf
.gitattributes text working-tree-encoding=UTF-8 eol=lf
.gitmodules text working-tree-encoding=UTF-8 eol=lf
.mailmap text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Source Code - C/C++ (AgentOS Core) - UTF-8 Encoding Enforcement
# =============================================================================
*.c text working-tree-encoding=UTF-8 eol=lf
*.h text working-tree-encoding=UTF-8 eol=lf
*.hpp text working-tree-encoding=UTF-8 eol=lf
*.cpp text working-tree-encoding=UTF-8 eol=lf
*.cc text working-tree-encoding=UTF-8 eol=lf
*.cxx text working-tree-encoding=UTF-8 eol=lf
# CMake build system
CMakeLists.txt text working-tree-encoding=UTF-8 eol=lf
*.cmake text working-tree-encoding=UTF-8 eol=lf
*.cmake.in text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Python (Toolkit SDK & OpenLab) - UTF-8 Encoding Enforcement
# =============================================================================
*.py text working-tree-encoding=UTF-8 eol=lf
*.pyx text working-tree-encoding=UTF-8 eol=lf
*.pyd text working-tree-encoding=UTF-8 eol=lf
*.pyw text working-tree-encoding=UTF-8 eol=lf
*.pyi text working-tree-encoding=UTF-8 eol=lf
requirements*.txt text working-tree-encoding=UTF-8 eol=lf
Pipfile text working-tree-encoding=UTF-8 eol=lf
setup.py text working-tree-encoding=UTF-8 eol=lf
setup.cfg text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Go (Toolkit SDK) - UTF-8 Encoding Enforcement
# =============================================================================
*.go text working-tree-encoding=UTF-8 eol=lf
go.mod text working-tree-encoding=UTF-8 eol=lf
go.sum text=binary
*.s text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Rust (Toolkit SDK) - UTF-8 Encoding Enforcement
# =============================================================================
*.rs text working-tree-encoding=UTF-8 eol=lf
Cargo.toml text working-tree-encoding=UTF-8 eol=lf
Cargo.lock text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# TypeScript/JavaScript (Toolkit SDK) - UTF-8 Encoding Enforcement
# =============================================================================
*.ts text working-tree-encoding=UTF-8 eol=lf
*.tsx text working-tree-encoding=UTF-8 eol=lf
*.js text working-tree-encoding=UTF-8 eol=lf
*.jsx text working-tree-encoding=UTF-8 eol=lf
*.mjs text working-tree-encoding=UTF-8 eol=lf
*.cjs text working-tree-encoding=UTF-8 eol=lf
*.d.ts text working-tree-encoding=UTF-8 eol=lf
package.json text working-tree-encoding=UTF-8 eol=lf
package-lock.json text working-tree-encoding=UTF-8 eol=lf
tsconfig.json text working-tree-encoding=UTF-8 eol=lf
*.map text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Shell Scripts (DevOps & CI/CD) - UTF-8 Encoding Enforcement
# =============================================================================
*.sh text working-tree-encoding=UTF-8 eol=lf
*.bash text working-tree-encoding=UTF-8 eol=lf
*.zsh text working-tree-encoding=UTF-8 eol=lf
*.fish text working-tree-encoding=UTF-8 eol=lf
Makefile text working-tree-encoding=UTF-8 eol=lf
*.mk text working-tree-encoding=UTF-8 eol=lf
Dockerfile text working-tree-encoding=UTF-8 eol=lf
docker-compose*.yml text working-tree-encoding=UTF-8 eol=lf
docker-compose*.yaml text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Configuration Files - UTF-8 Encoding Enforcement
# =============================================================================
*.yml text working-tree-encoding=UTF-8 eol=lf
*.yaml text working-tree-encoding=UTF-8 eol=lf
*.toml text working-tree-encoding=UTF-8 eol=lf
*.ini text working-tree-encoding=UTF-8 eol=lf
*.cfg text working-tree-encoding=UTF-8 eol=lf
*.conf text working-tree-encoding=UTF-8 eol=lf
*.properties text working-tree-encoding=UTF-8 eol=lf
.env.example text working-tree-encoding=UTF-8 eol=lf
.editorconfig text working-tree-encoding=UTF-8 eol=lf
# AgentOS specific configs
manager.yaml text working-tree-encoding=UTF-8 eol=lf
policy.yaml text working-tree-encoding=UTF-8 eol=lf
schema.json text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Documentation - UTF-8 Encoding Enforcement
# =============================================================================
*.md text working-tree-encoding=UTF-8 eol=lf
*.mdown text working-tree-encoding=UTF-8 eol=lf
*.markdown text working-tree-encoding=UTF-8 eol=lf
*.rst text working-tree-encoding=UTF-8 eol=lf
*.adoc text working-tree-encoding=UTF-8 eol=lf
*.txt text working-tree-encoding=UTF-8 eol=lf
LICENSE* text working-tree-encoding=UTF-8 eol=lf
AUTHORS* text working-tree-encoding=UTF-8 eol=lf
CHANGELOG* text working-tree-encoding=UTF-8 eol=lf
CONTRIBUTING* text working-tree-encoding=UTF-8 eol=lf
NOTICE text working-tree-encoding=UTF-8 eol=lf
ACKNOWLEDGMENTS* text working-tree-encoding=UTF-8 eol=lf
CODE_OF_CONDUCT* text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Data Formats - UTF-8 Encoding Enforcement
# =============================================================================
*.json text working-tree-encoding=UTF-8 eol=lf
*.xml text working-tree-encoding=UTF-8 eol=lf
*.svg text working-tree-encoding=UTF-8 eol=lf
*.html text working-tree-encoding=UTF-8 eol=lf
*.css text working-tree-encoding=UTF-8 eol=lf
*.scss text working-tree-encoding=UTF-8 eol=lf
*.less text working-tree-encoding=UTF-8 eol=lf
*.graphql text working-tree-encoding=UTF-8 eol=lf
*.proto text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# Binary Files (DO NOT normalize)
# =============================================================================
# Compiled objects
*.so binary
*.dll binary
*.dylib binary
*.a binary
*.lib binary
*.o binary
*.obj binary
# Executables
*.exe binary
*.bin binary
*.out binary
*.app binary
# Precompiled headers
*.pch binary
*.gch binary
# Archives
*.zip binary
*.tar binary
*.gz binary
*.bz2 binary
*.7z binary
*.rar binary
*.xz binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
*.bmp binary
*.tiff binary
*.tif binary
*.svgz binary
# Fonts
*.ttf binary
*.otf binary
*.eot binary
*.woff binary
*.woff2 binary
# Documents
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
*.ppt binary
*.pptx binary
# Data files (large/generated)
*.db binary
*.sqlite binary
*.sqlite3 binary
*.faiss binary
*.pkl binary
*.pickle binary
*.npy binary
*.npz binary
*.parquet binary
*.arrow binary
*.feather binary
*.h5 binary
*.pt binary
*.onnx binary
*.tflite binary
*.bin binary
*.pth binary
*.model binary
# Keys and certificates
*.pem binary
*.key binary
*.crt binary
*.cer binary
*.der binary
*.p12 binary
*.pfx binary
*.jks binary
*.keystore binary
# Lock files (language-specific) - UTF-8 Encoding Enforcement
poetry.lock text working-tree-encoding=UTF-8 eol=lf
Cargo.lock text working-tree-encoding=UTF-8 eol=lf
yarn.lock text working-tree-encoding=UTF-8 eol=lf
pnpm-lock.yaml text working-tree-encoding=UTF-8 eol=lf
Package.lock text working-tree-encoding=UTF-8 eol=lf
Gopkg.lock text working-tree-encoding=UTF-8 eol=lf
# =============================================================================
# AgentOS Project Specific
# =============================================================================
# CI/CD workflows
.github/** text=eol=lf auto
.gitcode/** text=eol=lf auto
# .gitcode module - UTF-8 encoding enforcement
.gitcode/*.md text working-tree-encoding=UTF-8 eol=lf
.gitcode/*.yml text working-tree-encoding=UTF-8 eol=lf
.gitcode/*.yaml text working-tree-encoding=UTF-8 eol=lf
.gitcode/CODEOWNERS text working-tree-encoding=UTF-8 eol=lf
.gitcode/ISSUE_TEMPLATE/*.md text working-tree-encoding=UTF-8 eol=lf
.gitcode/ISSUE_TEMPLATE/*.yml text working-tree-encoding=UTF-8 eol=lf
.gitcode/workflows/*.yml text working-tree-encoding=UTF-8 eol=lf
.gitcode/workflows/*.yaml text working-tree-encoding=UTF-8 eol=lf
# vcpkg
vcpkg.json text working-tree-encoding=UTF-8 eol=lf
# Test fixtures
tests/fuzz/** -text
tests/benchmarks/** -text
# =============================================================================
# Binary Files - Large Media Files
# =============================================================================
# Video files - treat as binary without LFS
*.mp4 binary
*.avi binary
*.mov binary
*.mkv binary
*.wmv binary
*.flv binary
*.webm binary
# Large image files and animations - treat as binary
*.psd binary
*.ai binary