8000 update line ending attributes · stackless-dev/stackman@2fbe1a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2fbe1a7

Browse files
committed
update line ending attributes
1 parent c37593d commit 2fbe1a7

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

.gitattributes

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# use unix lf line ending for everything except windows bat files
22
* 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
3+
4+
# libraries are bin
5+
*.o binary
6+
*.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

Comments
 (0)
0