File tree 6 files changed +193
-1
lines changed
6 files changed +193
-1
lines changed Original file line number Diff line number Diff line change 1
- # Auto detect text files and perform LF normalization
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.
2
16
* text =auto
17
+
18
+ # # SOURCE CODE
19
+ * .bat text eol =crlf
20
+ * .coffee text
21
+ * .css text
22
+ * .htm text
23
+ * .html text
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
33
+ * .pl text
34
+ * .py text
35
+ * .rb text
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
+ * .xml text
46
+ * .xhtml text
47
+
48
+ # # DOCKER
49
+ * .dockerignore text
50
+ Dockerfile text
51
+
52
+ # # DOCUMENTATION
53
+ * .markdown text
54
+ * .md text
55
+ * .mdwn text
56
+ * .mdown text
57
+ * .mkd text
58
+ * .mkdn text
59
+ * .mdtxt text
60
+ * .mdtext text
61
+ * .txt text
62
+ AUTHORS text
63
+ CHANGELOG text
64
+ CHANGES text
65
+ CONTRIBUTING text
66
+ COPYING text
67
+ copyright text
68
+ * COPYRIGHT * text
69
+ INSTALL text
70
+ license text
71
+ LICENSE text
72
+ NEWS text
73
+ readme text
74
+ * README * text
75
+ TODO text
76
+
77
+ # # TEMPLATES
78
+ * .dot text
79
+ * .ejs text
80
+ * .haml text
81
+ * .handlebars text
82
+ * .hbs text
83
+ * .hbt text
84
+ * .jade text
85
+ * .latte text
86
+ * .mustache text
87
+ * .njk text
88
+ * .phtml text
89
+ * .tmpl text
90
+ * .tpl text
91
+ * .twig text
92
+
93
+ # # LINTERS
94
+ .babelrc text
95
+ .csslintrc text
96
+ .eslintrc text
97
+ .htmlhintrc text
98
+ .jscsrc text
99
+ .jshintrc text
100
+ .jshintignore text
101
+ .prettierrc text
102
+ .stylelintrc text
103
+
104
+ # # CONFIGS
105
+ * .bowerrc text
106
+ * .cnf text
107
+ * .conf text
108
+ * .config text
109
+ .browserslistrc text
110
+ .editorconfig text
111
+ .gitattributes text
112
+ .gitconfig text
113
+ .gitignore text
114
+ .htaccess text
115
+ * .npmignore text
116
+ * .yaml text
117
+ * .yml text
118
+ browserslist text
119
+ Makefile text
120
+ makefile text
121
+
122
+ # # HEROKU
123
+ Procfile text
124
+ .slugignore text
125
+
126
+ # # GRAPHICS
127
+ * .ai binary
128
+ * .bmp binary
129
+ * .eps binary
130
+ * .gif binary
131
+ * .ico binary
132
+ * .jng binary
133
+ * .jp2 binary
134
+ * .jpg binary
135
+ * .jpeg binary
136
+ * .jpx binary
137
+ * .jxr binary
138
+ * .pdf binary
139
+ * .png binary
140
+ * .psb binary
141
+ * .psd binary
142
+ * .svg text
143
+ * .svgz binary
144
+ * .tif binary
145
+ * .tiff binary
146
+ * .wbmp binary
147
+ * .webp binary
148
+
149
+ # # AUDIO
150
+ * .kar binary
151
+ * .m4a binary
152
+ * .mid binary
153
+ * .midi binary
154
+ * .mp3 binary
155
+ * .ogg binary
156
+ * .ra binary
157
+
158
+ # # VIDEO
159
+ * .3gpp binary
160
+ * .3gp binary
161
+ * .as binary
162
+ * .asf binary
163
+ * .asx binary
164
+ * .fla binary
165
+ * .flv binary
166
+ * .m4v binary
167
+ * .mng binary
168
+ * .mov binary
169
+ * .mp4 binary
170
+ * .mpeg binary
171
+ * .mpg binary
172
+ * .ogv binary
173
+ * .swc binary
174
+ * .swf binary
175
+ * .webm binary
176
+
177
+ # # ARCHIVES
178
+ * .7z binary
179
+ * .gz binary
180
+ * .jar binary
181
+ * .rar binary
182
+ * .tar binary
183
+ * .zip binary
184
+
185
+ # # FONTS
186
+ * .ttf binary
187
+ * .eot binary
188
+ * .otf binary
189
+ * .woff binary
190
+ * .woff2 binary
191
+
192
+ # # EXECUTABLES
193
+ * .exe binary
194
+ * .pyc binary
You can’t perform that action at this time.
0 commit comments