-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
240 lines (198 loc) · 5.12 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# ============================================================
# Default behavior.
# Auto detect filetypes and normalize text files.
# ============================================================
# * text=auto - Use OS line endings
# * text=auto eol=lf - Use LF line endings
# ============================================================
* text=auto eol=lf
# ============================================================
# Text files.
# Make sure the filetypes below have normalized EOLs.
# ============================================================
# Markup
*.php text eol=lf
*.htm text eol=lf
*.html text eol=lf
# Styles
*.css text eol=lf
*.scss text eol=lf
*.sass text eol=lf
*.less text eol=lf
*.styl text eol=lf
*.map text eol=lf
# JavaScript
*.js text eol=lf
*.ts text eol=lf
*.jsx text eol=lf
*.tsx text eol=lf
*.coffee text eol=lf
# Serialization
*.json text eol=lf
*.neon text eol=lf
*.toml text eol=lf
*.yaml text eol=lf
*.xml text eol=lf
*.yml text eol=lf
*.txt text eol=lf
# Templates
*.vue text eol=lf
*.jade text eol=lf
*.twig text eol=lf
*.latte text eol=lf
*.svelte text eol=lf
*.mustache text eol=lf
# Languages
*.pot text eol=lf
*.po text eol=lf
*.mo binary
# Databases
*.sql text eol=lf
*.sqlite text eol=lf
*.sqlitedb text eol=lf
# Documentation
*.md text eol=lf
*.mkd text eol=lf
*.mkdn text eol=lf
*.mdown text eol=lf
*.markdn text eol=lf
*.markdown text eol=lf
# Configuration
*.ini text eol=lf
*.cnf text eol=lf
*.conf text eol=lf
*.config text eol=lf
*.dist text eol=lf
*.lock text eol=lf
# Git and Development
.*rc text eol=lf
.*conf text eol=lf
.*config text eol=lf
.*ignore text eol=lf
.gitkeep text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
# Unix Shell Scripts
*.bash text eol=lf
*.zsh text eol=lf
*.sh text eol=lf
# Windows Shell Scripts
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# ============================================================
# Binary files.
# Make sure the filetypes below are not modified in any way.
# ============================================================
# Archives
*.zip binary
*.rar binary
*.tar binary
*.tgz binary
*.gz binary
*.7z binary
*.z binary
# Graphics
*.svg text eol=lf
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.bmp binary
*.hdr binary
*.exr binary
*.jxl binary
*.jxr binary
*.tga binary
*.raw binary
*.eps binary
*.tif binary
*.tiff binary
*.heif binary
*.avif binary
*.webp binary
*.jpeg binary
# Video
*.mp4 binary
*.m4v binary
*.mov binary
*.mkv binary
*.wmv binary
*.avi binary
*.mpg binary
*.mpeg binary
*.webm binary
# Audio
*.m4a binary
*.m4b binary
*.mp3 binary
*.ogg binary
*.wav binary
*.wma binary
*.mid binary
*.midi binary
*.flac binary
*.opus binary
# Fonts
*.eot binary
*.otf binary
*.ttf binary
*.woff binary
*.woff2 binary
# Documents
*.pdf binary
*.csv binary
*.rtf binary
*.doc binary
*.xls binary
*.ppt binary
*.docx binary
*.xlsx binary
*.pptx binary
# Executables
*.exe binary
*.msi binary
*.msix binary
# Other Binaries
*.afdesign binary
*.afphoto binary
*.afpub binary
*.psd binary
*.ai binary
# ============================================================
# Ignore development files and folders.
# Make sure the content below is ignored during deployment.
# ============================================================
# Code Editors
.idea export-ignore
.vscode export-ignore
.editorconfig export-ignore
# Development
.dev export-ignore
.cache export-ignore
.polygon export-ignore
.wordpress export-ignore
# Github
.github export-ignore
.gitkeep export-ignore
.gitignore export-ignore
.gitattributes export-ignore
# Coding Standards
*phpcs* export-ignore
*eslint* export-ignore
*stylelint* export-ignore
*markdownlint* export-ignore
# Testing and Analysis
*psalm* export-ignore
*phpstan* export-ignore
*phpunit* export-ignore
*prettier* export-ignore
# Tools and Package Managers
*npm* export-ignore
*yarn* export-ignore
*babel* export-ignore
*bower* export-ignore
*prepros* export-ignore
package.json export-ignore
composer.json export-ignore
composer.lock export-ignore