forked from TheGhostDev1/Draenor-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
65 lines (54 loc) · 1.76 KB
/
.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
59
60
61
62
63
64
65
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
#sources
*.C text
*.cc text
*.cxx text
*.cpp text
*.c++ text
*.hpp text
*.h text
*.h++ text
*.hh text
# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf
# Whitespace rules
# strict (no trailing, no tabs)
*.c whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.cc whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.cxx whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.cpp whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.c++ whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.h whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.hpp whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.hh whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.h++ whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
# normal (no trailing)
*.sql whitespace=trailing-space,space-before-tab,cr-at-eol
*.txt whitespace=trailing-space,space-before-tab,cr-at-eol
# special files which must ignore whitespace
*.patch whitespace=-trailing-space
# Denote all files that are truly binary and should not be modified.
# Compiled Object files
*.slo binary
*.lo binary
*.o binary
*.obj binary
# Precompiled Headers
*.gch binary
*.pch binary
# Compiled Dynamic libraries
*.so binary
*.dylib binary
*.dll binary
# Compiled Static libraries
*.lai binary
*.la binary
*.a binary
*.lib binary
# Executables
*.exe binary
*.out binary
*.app binary