-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
107 lines (92 loc) · 1.85 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# From https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
#
# The above will handle all files NOT found below
#
#
## These files are text and should be normalized (Convert crlf => lf)
#
# source code
*.php text eol=crlf
*.css text eol=crlf
*.sass text eol=crlf
*.scss text eol=crlf
*.less text eol=crlf
*.styl text eol=crlf
*.js text eol=crlf
*.coffee text eol=crlf
*.json text eol=crlf
*.htm text eol=crlf
*.html text eol=crlf
*.xml text eol=crlf
*.svg text eol=crlf
*.txt text eol=crlf
*.ini text eol=crlf
*.inc text eol=crlf
*.pl text eol=crlf
*.rb text eol=crlf
*.py text eol=crlf
*.scm text eol=crlf
*.sql text eol=crlf
*.sh text eol=crlf
*.bat text eol=crlf
# templates
*.ejs text eol=crlf
*.hbt text eol=crlf
*.jade text eol=crlf
*.haml text eol=crlf
*.hbs text eol=crlf
*.dot text eol=crlf
*.tmpl text eol=crlf
*.phtml text eol=crlf
# server config
.htaccess text eol=crlf
.nginx.conf text eol=crlf
# git config
.gitattributes text eol=crlf
.gitignore text eol=crlf
.gitconfig text eol=crlf
# code analysis config
.jshintrc text eol=crlf
.jscsrc text eol=crlf
.jshintignore text eol=crlf
.csslintrc text eol=crlf
# misc config
*.yaml text eol=crlf
*.yml text eol=crlf
.editorconfig text eol=crlf
# build config
*.npmignore text eol=crlf
*.bowerrc text eol=crlf
# Heroku
Procfile text eol=crlf
.slugignore text eol=crlf
# Documentation
*.md text eol=crlf
LICENSE text
AUTHORS text
#
## These files are binary and should be left untouched
#
# (binary is a macro for -text -diff)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
*.eot binary
*.woff binary
*.pyc binary
*.pdf binary