8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37593d commit 2fbe1a7Copy full SHA for 2fbe1a7
.gitattributes
@@ -1,6 +1,23 @@
1
# use unix lf line ending for everything except windows bat files
2
* text=auto eol=lf
3
-*.asm text eol=lf
4
-*.h text eol=lf
5
-*.{cmd,[cC][mM][dD]} text eol=crlf
6
-*.{bat,[bB][aA][tT]} text eol=crlf
+
+# libraries are bin
+*.o binary
+*.obj binary
7
+*.a binary
8
+*.so binary
9
+*.lib binary
10
+*.dll binary
11
+*.pdb binary
12
13
14
+# source files explicitly
15
+*.{c,h,asm,S} text eol=lf
16
17
+*.cmd text eol=crlf
18
+*.bat text eol=crlf
19
20
+# Visulal studio is happier with crlf
21
+*.sln text eol=crlf
22
+*.vcxproj text eol=crlf
23
+*.vcxproj.filters text eol=crlf
0 commit comments