-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
193 lines (170 loc) · 5.45 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# References:
# https://adaptivepatchwork.com/2012/03/01/mind-the-end-of-your-line/
# https://git-scm.com/docs/gitattributes
# https://github.com/alexkaratarakis/gitattributes
# Auto detect text files and perform LF normalization
* text=auto
#
# The above will handle all files NOT found below
#
# -----------------------------------------------------------------------------------------
# Common.gitattributes {
# -----------------------------------------------------------------------------------------
# Common settings that generally should always be used with your language specific settings
# Archives
*.7z binary
*.gz binary
*.rar binary
*.tar binary
*.tgz binary
*.zip binary
# Audio
*.aac binary
*.ac3 binary
*.kar binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
*.ra binary
*.wav binary
*.wma binary
# Configuration / Inicialization
*.cnf text
*.conf text
*.config text
*.ini text
*.toml text
.browserslistrc text eol=lf
browserslist text eol=lf
Dockerfile text eol=lf
makefile text eol=lf
# Database
*.sql text
# Documents
# [xX] = Globbing Patterns
*.[dD][oO][cC] -text diff=astextplain
*.[dD][oO][cC][xX] -text diff=astextplain
*.[dD][oO][cC][mM] -text diff=astextplain
*.[dD][oO][tT] -text diff=astextplain
*.[dD][oO][tT][xX] -text diff=astextplain
*.[dD][oO][tT][mM] -text diff=astextplain
*.[pP][dD][fF] -text diff=astextplain
*.[rR][tT][fF] -text diff=astextplain
*.[oO][dD][fF] -text diff=astextplain
*.[oO][dD][sS] -text diff=astextplain
*.[oO][dD][tT] -text diff=astextplain
*.adoc text
*.csv text
*.markdown text eol=lf diff=markdown
*.md text eol=lf diff=markdown
*.mdwn text eol=lf diff=markdown
*.mdown text eol=lf diff=markdown
*.mkd text eol=lf diff=markdown
*.mkdn text eol=lf diff=markdown
*.tex text diff=tex
*.textile text
*.txt text
*.bpm binary
*.pbix binary
*.ppsx binary
*.ppt binary
*.pptx binary
*.xls binary
*.xlsx binary
*.xps binary
# Fonts
*.eot binary
*.otf binary
*.ttf binary
*.woff binary
*.woff2 binary
# Git
.gitattributes text eol=lf
.gitconfig text eol=lf
.gitignore text eol=lf
.gitkeep text eol=lf
.gitmodules text eol=lf
# Executables
*.exe binary
*.pyc binary
# Graphics / Image
*.bmp binary
*.eps binary
*.gif binary
*.gifv binary
*.ico binary
*.jng binary
*.jpg binary
*.jpeg binary
*.png binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
# Library
*.dll binary
# Reports
*.rptdesign text eol=lf
# Scripts
*.awk text eol=lf
*.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
# These are explicitly windows files and should use crlf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Serialisation
*.json text eol=lf
*.xml text eol=lf
*.xsl text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
# Web Basic
*.css text eol=lf diff=css
*.htm text eol=lf diff=html
*.html text eol=lf diff=html
*.xhtml text eol=lf diff=html
*.js text eol=lf
*.map text -diff
# Frameworks
*.vue text eol=lf
# Video
*.3gpp binary
*.3gp binary
*.as binary
*.asf binary
*.asx binary
*.avi binary
*.fla binary
*.flv binary
*.m4v binary
*.mkv binary
*.mng binary
*.mov binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.ogv binary
*.rmvb binary
*.swc binary
*.swf binary
*.webm binary
# Vim
*.vim text eol=lf
.gvimrc text eol=lf
.vimrc text eol=lf
_vimrc text eol=lf
# Text files where line endings should be preserved
*.patch -text
# Exclude files from exporting
# Ignore all test and documentation: For example, of some library installed via composer. Files are downloaded from Github repository, on a zip file.
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
README.md export-ignore
# -----------------------------------------------------------------------------------------
# } Common.gitattributes
# -----------------------------------------------------------------------------------------