-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.gitattributes
More file actions
48 lines (43 loc) · 1.41 KB
/
Copy path.gitattributes
File metadata and controls
48 lines (43 loc) · 1.41 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
# Normalize line endings: Git stores LF, checks out native on each platform.
* text=auto eol=lf
# Shell scripts and hooks must stay LF even on Windows checkouts.
*.sh text eol=lf
.githooks/* text eol=lf
# Windows-only scripts keep CRLF.
*.bat text eol=crlf
*.cmd text eol=crlf
# --- Generated / vendored files: collapse in diffs and exclude from language stats ---
package-lock.json linguist-generated=true -diff
CHANGELOG.md linguist-generated=true
public/changelog.json linguist-generated=true -diff
public/changelog.xml linguist-generated=true -diff
public/llms.txt linguist-generated=true
public/llms-full.txt linguist-generated=true
*.min.js linguist-generated=true -diff
*.bundle.js linguist-generated=true -diff
# --- Linguist: classify the repo as code, not vendored assets ---
docs/** linguist-documentation
examples/** linguist-documentation
*.md linguist-detectable=true
# --- Treat binary assets as binary (no diff, no EOL conversion) ---
*.glb binary
*.gltf binary
*.fbx binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.mp3 binary
*.mp4 binary
*.wav binary
*.ogg binary
*.hdr binary
*.ktx2 binary
*.basis binary
*.wasm binary
*.woff binary
*.woff2 binary
*.ttf binary
*.pdf binary