-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
149 lines (126 loc) · 2.7 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
## Test/documentation
# Ignore all test and documentation with "export-ignore".
/.gitattributes export-ignore
/.githooks export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/.travis.yaml export-ignore
/phpunit.xml.dist export-ignore
/.scrutinizer.yml export-ignore
/.scrutinizer.yaml export-ignore
/tests export-ignore
## Merging
CHANGELOG.md merge=union
## Line endings
### Automatic
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto eol=lf
### Text (should be normalized, convert crlf => lf)
# Source
*.php text eol=lf
*.css text eol=lf
*.sass text eol=lf
*.scss text eol=lf
*.less text eol=lf
*.styl text eol=lf
*.js text eol=lf
*.coffee text eol=lf
*.json text eol=lf
*.htm text eol=lf
*.html text eol=lf
*.xml 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
*.py text eol=lf
*.scm text eol=lf
*.sql text eol=lf
*.sh text eol=lf
*.bat text eol=lf
# Templates
*.ejs text eol=lf
*.hbt text eol=lf
*.jade text eol=lf
*.haml text eol=lf
*.hbs text eol=lf
*.dot text eol=lf
*.tmpl text eol=lf
*.phtml text eol=lf
*.wadl text eol=lf
*.wsdl text eol=lf
# App config
.env text eol=lf
.env.example text eol=lf
.env.sample text eol=lf
# Server config
.htaccess text eol=lf
# Git config
.gitattributes text eol=lf
.gitignore text eol=lf
# Code analysis config
.jshintrc text eol=lf
.jscsrc text eol=lf
.jshintignore text eol=lf
.csslintrc text eol=lf
# Misc config
*.yaml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
.editorconfig text eol=lf
# Build config
composer.lock text eol=lf
*.npmignore text eol=lf
*.bowerrc text eol=lf
# Heroku
Procfile text eol=lf
.slugignore text eol=lf
# Documentation
*.md text eol=lf
LICENSE text eol=lf
AUTHORS text eol=lf
# Vagrant
Vagrantfile eol=lf
# Scripts
bin/* text eol=lf
### Binary (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
*.mwb binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.rar binary
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
*.otf binary
*.pyc binary
*.pdf binary
*.bz2 binary
*.sh linguist-language=go
*.webm binary
*.class binary
*.dll binary
*.ear binary
*.jar binary
*.so binary
*.war binary
*.xls binary
*.xlsx binary