File tree Expand file tree Collapse file tree 1 file changed +197
-0
lines changed Expand file tree Collapse file tree 1 file changed +197
-0
lines changed Original file line number Diff line number Diff line change
1
+ # # GITATTRIBUTES FOR WEB PROJECTS
2
+ #
3
+ # These settings are for any web project.
4
+ #
5
+ # Details per file setting:
6
+ # text These files should be normalized (i.e. convert CRLF to LF).
7
+ # binary These files are binary and should be left untouched.
8
+ #
9
+ # Note that binary is a macro for -text -diff.
10
+ # #####################################################################
11
+
12
+ # # AUTO-DETECT
13
+ # # Handle line endings automatically for files detected as
14
+ # # text and leave all files detected as binary untouched.
15
+ # # This will handle all files NOT defined below.
16
+ * text =auto
17
+
18
+ # # SOURCE CODE
19
+ * .bat text eol =crlf
20
+ * .coffee text
21
+ * .css text
22
+ * .htm text diff =html
23
+ * .html text diff =html
24
+ * .inc text
25
+ * .ini text
26
+ * .js text
27
+ * .json text
28
+ * .jsx text
29
+ * .less text
30
+ * .od text
31
+ * .onlydata text
32
+ * .php text diff =php
33
+ * .pl text
34
+ * .py text diff =python
35
+ * .rb text diff =ruby
36
+ * .sass text
37
+ * .scm text
38
+ * .scss text
39
+ * .sh text eol =lf
40
+ * .sql text
41
+ * .styl text
42
+ * .tag text
43
+ * .ts text
44
+ * .tsx text
45
+ * .vue text
46
+ * .xml text
47
+ * .xhtml text diff =html
48
+
49
+ # # DOCKER
50
+ * .dockerignore text
51
+ Dockerfile text
52
+
53
+ # # DOCUMENTATION
54
+ * .ipynb text
55
+ * .markdown text
56
+ * .md text
57
+ * .mdwn text
58
+ * .mdown text
59
+ * .mkd text
60
+ * .mkdn text
61
+ * .mdtxt text
62
+ * .mdtext text
63
+ * .txt text
64
+ AUTHORS text
65
+ CHANGELOG text
66
+ CHANGES text
67
+ CONTRIBUTING text
68
+ COPYING text
69
+ copyright text
70
+ * COPYRIGHT * text
71
+ INSTALL text
72
+ license text
73
+ LICENSE text
74
+ NEWS text
75
+ readme text
76
+ * README * text
77
+ TODO text
78
+
79
+ # # TEMPLATES
80
+ * .dot text
81
+ * .ejs text
82
+ * .haml text
83
+ * .handlebars text
84
+ * .hbs text
85
+ * .hbt text
86
+ * .jade text
87
+ * .latte text
88
+ * .mustache text
89
+ * .njk text
90
+ * .phtml text
91
+ * .tmpl text
92
+ * .tpl text
93
+ * .twig text
94
+
95
+ # # LINTERS
96
+ .csslintrc text
97
+ .eslintrc text
98
+ .htmlhintrc text
99
+ .jscsrc text
100
+ .jshintrc text
101
+ .jshintignore text
102
+ .stylelintrc text
103
+
104
+ # # CONFIGS
105
+ * .bowerrc text
106
+ * .cnf text
107
+ * .conf text
108
+ * .config text
109
+ .babelrc text
110
+ .browserslistrc text
111
+ .editorconfig text
112
+ .env text
113
+ .gitattributes text
114
+ .gitconfig text
115
+ .gitignore text
116
+ .htaccess text
117
+ * .lock text
118
+ * .npmignore text
119
+ * .yaml text
120
+ * .yml text
121
+ browserslist text
122
+ Makefile text
123
+ makefile text
124
+
125
+ # # HEROKU
126
+ Procfile text
127
+ .slugignore text
128
+
129
+ # # GRAPHICS
130
+ * .ai binary
131
+ * .bmp binary
132
+ * .eps binary
133
+ * .gif binary
134
+ * .ico binary
135
+ * .jng binary
136
+ * .jp2 binary
137
+ * .jpg binary
138
+ * .jpeg binary
139
+ * .jpx binary
140
+ * .jxr binary
141
+ * .pdf binary
142
+ * .png binary
143
+ * .psb binary
144
+ * .psd binary
145
+ * .svg text
146
+ * .svgz binary
147
+ * .tif binary
148
+ * .tiff binary
149
+ * .wbmp binary
150
+ * .webp binary
151
+
152
+ # # AUDIO
153
+ * .kar binary
154
+ * .m4a binary
155
+ * .mid binary
156
+ * .midi binary
157
+ * .mp3 binary
158
+ * .ogg binary
159
+ * .ra binary
160
+
161
+ # # VIDEO
162
+ * .3gpp binary
163
+ * .3gp binary
164
+ * .as binary
165
+ * .asf binary
166
+ * .asx binary
167
+ * .fla binary
168
+ * .flv binary
169
+ * .m4v binary
170
+ * .mng binary
171
+ * .mov binary
172
+ * .mp4 binary
173
+ * .mpeg binary
174
+ * .mpg binary
175
+ * .ogv binary
176
+ * .swc binary
177
+ * .swf binary
178
+ * .webm binary
179
+
180
+ # # ARCHIVES
181
+ * .7z binary
182
+ * .gz binary
183
+ * .jar binary
184
+ * .rar binary
185
+ * .tar binary
186
+ * .zip binary
187
+
188
+ # # FONTS
189
+ * .ttf binary
190
+ * .eot binary
191
+ * .otf binary
192
+ * .woff binary
193
+ * .woff2 binary
194
+
195
+ # # EXECUTABLES
196
+ * .exe binary
197
+ * .pyc binary
You can’t perform that action at this time.
0 commit comments