This repository was archived by the owner on Jan 25, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +191
-0
lines changed
Expand file tree Collapse file tree 1 file changed +191
-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
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+ .csslintrc text
95+ .eslintrc text
96+ .htmlhintrc text
97+ .jscsrc text
98+ .jshintrc text
99+ .jshintignore text
100+ .stylelintrc text
101+
102+ # # CONFIGS
103+ * .bowerrc text
104+ * .cnf text
105+ * .conf text
106+ * .config text
107+ .browserslistrc text
108+ .editorconfig text
109+ .gitattributes text
110+ .gitconfig text
111+ .htaccess text
112+ * .npmignore text
113+ * .yaml text
114+ * .yml text
115+ browserslist text
116+ Makefile text
117+ makefile text
118+
119+ # # HEROKU
120+ Procfile text
121+ .slugignore text
122+
123+ # # GRAPHICS
124+ * .ai binary
125+ * .bmp binary
126+ * .eps binary
127+ * .gif binary
128+ * .ico binary
129+ * .jng binary
130+ * .jp2 binary
131+ * .jpg binary
132+ * .jpeg binary
133+ * .jpx binary
134+ * .jxr binary
135+ * .pdf binary
136+ * .png binary
137+ * .psb binary
138+ * .psd binary
139+ * .svg text
140+ * .svgz binary
141+ * .tif binary
142+ * .tiff binary
143+ * .wbmp binary
144+ * .webp binary
145+
146+ # # AUDIO
147+ * .kar binary
148+ * .m4a binary
149+ * .mid binary
150+ * .midi binary
151+ * .mp3 binary
152+ * .ogg binary
153+ * .ra binary
154+
155+ # # VIDEO
156+ * .3gpp binary
157+ * .3gp binary
158+ * .as binary
159+ * .asf binary
160+ * .asx binary
161+ * .fla binary
162+ * .flv binary
163+ * .m4v binary
164+ * .mng binary
165+ * .mov binary
166+ * .mp4 binary
167+ * .mpeg binary
168+ * .mpg binary
169+ * .ogv binary
170+ * .swc binary
171+ * .swf binary
172+ * .webm binary
173+
174+ # # ARCHIVES
175+ * .7z binary
176+ * .gz binary
177+ * .jar binary
178+ * .rar binary
179+ * .tar binary
180+ * .zip binary
181+
182+ # # FONTS
183+ * .ttf binary
184+ * .eot binary
185+ * .otf binary
186+ * .woff binary
187+ * .woff2 binary
188+
189+ # # EXECUTABLES
190+ * .exe binary
191+ * .pyc binary
You can’t perform that action at this time.
0 commit comments