-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
57 lines (49 loc) · 948 Bytes
/
.gitattributes
File metadata and controls
57 lines (49 loc) · 948 Bytes
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
# Ensure consistent line endings across platforms
* text=auto eol=lf
# Specific file types
*.cpp text eol=lf
*.h text eol=lf
*.hpp text eol=lf
*.c text eol=lf
*.cmake text eol=lf
*.txt text eol=lf
*.md text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Shell scripts must use LF
*.sh text eol=lf
# Windows-specific files can use CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
# Binary files
*.png binary
*.jpg binary
*.spv binary
*.ktx2 binary
# Additional C++ related files
*.cc text eol=lf
*.cxx text eol=lf
*.inl text eol=lf
*.inc text eol=lf
# Build system files
*.vcxproj text eol=crlf
*.vcxproj.filters text eol=crlf
*.vcxproj.user text eol=crlf
*.sln text eol=crlf
Makefile text eol=lf
# Shader files
*.vert text eol=lf
*.frag text eol=lf
*.glsl text eol=lf
*.hlsl text eol=lf
# Additional binary types
*.exe binary
*.dll binary
*.so binary
*.dylib binary
*.lib binary
*.a binary
*.obj binary
*.o binary
*.pdb binary