-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
40 lines (33 loc) · 817 Bytes
/
.gitattributes
File metadata and controls
40 lines (33 loc) · 817 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
# Auto detect text files and perform LF normalization
* text=auto
# C++ source files
*.cpp text eol=lf diff=cpp
*.hpp text eol=lf diff=cpp
# C source files
*.c text eol=lf diff=c
*.h text eol=lf diff=c
# Coral source file
*.coral text eol=lf diff=cpp
# Build files
.gitignore text eol=lf
.gitattributes text eol=lf
.kmake text eol=lf
.kmf text eol=lf
# Text files
*.md text eol=lf
*.txt text eol=lf
# Binaries - don't touch line endings
*.exe binary
*.dll binary
*.so binary
*.o binary
*.a binary
*.lib binary
*.kmd binary
*.kfd binary
# GitHub language detection
*.cpp linguist-language=C++
*.hpp linguist-language=C++
*.c linguist-language=C
*.h linguist-language=C
*.coral linguist-language=Coral