-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.gitattributes
More file actions
43 lines (37 loc) · 816 Bytes
/
Copy path.gitattributes
File metadata and controls
43 lines (37 loc) · 816 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
# Force LF for text files on the repo (target platform: Unix/WSL)
* text=auto eol=lf
# Ensure scripts are always LF
*.sh text eol=lf
*/configure text eol=lf
configure text eol=lf
*/Makefile text eol=lf
Makefile text eol=lf
*/Makefile.in text eol=lf
Makefile.in text eol=lf
build.sh text eol=lf
# Configuration files
*.ac text eol=lf
*.in text eol=lf
configure.ac text eol=lf
config.h.in text eol=lf
# Docs and markdown
*.md text eol=lf
*.txt text eol=lf
*.1 text eol=lf
*.8 text eol=lf
doc/man/* text eol=lf
# C/C++ sources and headers
*.c text eol=lf
*.h text eol=lf
# Test files
test/*.sh text eol=lf
test/*.c text eol=lf
# Other text files
TODO text eol=lf
CHANGELOG text eol=lf
CHANGELOG.md text eol=lf
README text eol=lf
README.md text eol=lf
COPYRIGHT text eol=lf
CREDITS text eol=lf
INSTALL text eol=lf