-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitattributes
58 lines (52 loc) · 944 Bytes
/
.gitattributes
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
* text=auto eol=lf
# Scripts
*.gd text eol=lf
*.gdshader text eol=lf
*.cmake text eol=lf
*.c text eol=lf
*.cc text eol=lf
*.cpp text eol=lf
*.h text eol=lf
*.hh text eol=lf
*.hpp text eol=lf
*.hxx text eol=lf
*.txt text eol=lf
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.tif binary
*.tiff binary
*.ico binary
*.pdf binary
# SVG treated as an asset (binary) by default.
*.svg text eol=lf
*.ttf binary
*.tga binary
# 3D models
*.glb binary
*.gltf binary
*.blend binray
*.fbx binary
*.dae binary
*.obj binary
*.mtl binary
# GDExtension
*.so binary
*.dll binary
*.lib binary
*.exp binary
*.bin binary
# Archives
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary
# Serialisation
*.json text eol=lf
*.toml text eol=lf
*.xml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf