This repository has been archived by the owner on Nov 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
.gitattributes
182 lines (152 loc) · 3.15 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
# Set default behaviour, in case users do not have core.autocrlf set
* text=auto
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout
# C sources
*.c text
# Config
*.cfg text
*.conf text
*.ini text
*.yaml text
*.yml text
# Docs
*.DOC diff=astextplain
*.DOCX diff=astextplain
*.DOT diff=astextplain
*.PDF diff=astextplain
*.RTF diff=astextplain
*.adoc text
*.csv text
*.doc diff=astextplain
*.docx diff=astextplain
*.dot diff=astextplain
*.in text
*.md text
*.mustache text
*.pdf diff=astextplain
*.rst text
*.rtf diff=astextplain
*.sql text
*.tab text
*.text text
*.textile text
*.tsv text
AUTHORS text
LICENSE text
# Git
.gitattributes text
.gitconfig text
.gitignore text
# Heroku
.slugignore text
Procfile text
# Misc
*.inc text
*.map text
# Python sources
*.pxd text
*.py text
*.py3 text
*.pyw text
*.pyx text
# Scripts
*.bat text
*.cmd text
*.sh text
# Translations
*.po text
*.pot text
# Vectorial images
*.svg text
# Web build
*.bowerrc text
*.npmignore text
# Web code analysis
.csslintrc text
.eslintrc text
.jscsrc text
.jshintignore text
.jshintrc text
.stylelintrc text
# Web config
.editorconfig text
.htaccess text
# Web scripts
*.coffee text
*.js text
# Web sources
*.htm text
*.html text
*.json text
*.php text
*.pl text
*.rb text
*.scm text
*.ts text
*.xml text
# Web styles
*.css text
*.less text
*.sass text
*.scss text
*.styl text
# Web templates
*.ejs text
*.haml text
*.hbs text
*.hbt text
*.jade text
*.latte text
*.phtml text
*.tmpl text
# pyLoad
*.etag text
*.pid text
# Denote all files that are truly binary and should not be modified
# (binary is a macro for -text -diff)
# Archives
*.7z binary
*.gz binary
*.iso binary
*.rar binary
*.tar binary
*.xz binary
*.zip binary
*.zipx binary
# Docs
*.db binary
# Images
*.eps binary
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.tif binary
*.tiff binary
# Fonts
*.eot binary
*.ttf binary
*.woff binary
*.woff2 binary
# Packages
*.egg binary
*.exe binary
*.msi binary
*.whl binary
# Python
*.p binary
*.pkl binary
*.pyc binary
*.pyd binary
*.pyo binary
# Translations
*.mo binary
# Videos
*.mov binary
*.mp3 binary
*.mp4 binary
*.fla binary
*.flv binary
*.swf binary