-
Notifications
You must be signed in to change notification settings - Fork 82
/
.gitattributes
48 lines (41 loc) · 916 Bytes
/
.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
# Based on https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
# See https://help.github.com/articles/dealing-with-line-endings/
* text=auto
# Convert crlf => lf for the specified files
# source code
*.java text eol=lf
*.css text eol=lf
*.sass text eol=lf
*.scss text eol=lf
*.js text eol=lf
*.json text eol=lf
*.htm text eol=lf
*.html text eol=lf
*.xml text eol=lf
*.iml text eol=lf
*.svg text eol=lf
*.txt text eol=lf
*.ini text eol=lf
*.inc text eol=lf
*.pl text eol=lf
*.rb text eol=lf
*.scm text eol=lf
*.sql text eol=lf
*.sh text eol=lf
# git config
.gitattributes text eol=lf
.gitignore text eol=lf
.gitconfig text eol=lf
# misc config
*.yaml text eol=lf
*.yml text eol=lf
*.gradle text eol=lf
*.properties text eol=lf
# Documentation
*.md text eol=lf
LICENSE text eol=lf
AUTHORS text eol=lf
# (binary is a macro for -text -diff), leave them unouched
*.png binary
*.jpg binary
*.jar