Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 2e0755f

Browse files
authored
Merge pull request #8 from topcoder-platform/dev
Release 1.0
2 parents 32e4e09 + e3401be commit 2e0755f

16 files changed

+1052
-191
lines changed

.gitattributes

+197
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
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+
*.css merge=ours
13+
*.css.map merge=ours
14+
15+
## AUTO-DETECT
16+
## Handle line endings automatically for files detected as
17+
## text and leave all files detected as binary untouched.
18+
## This will handle all files NOT defined below.
19+
* text=auto eol=lf
20+
21+
## SOURCE CODE
22+
*.bat text eol=crlf
23+
*.coffee text eol=lf
24+
*.css text eol=lf
25+
*.htm text eol=lf
26+
*.html text eol=lf
27+
*.inc text
28+
*.ini text
29+
*.js text eol=lf
30+
*.json text
31+
*.jsx text
32+
*.less text
33+
*.od text
34+
*.onlydata text
35+
*.php text
36+
*.pl text
37+
*.py text
38+
*.rb text
39+
*.sass text eol=lf
40+
*.scm text
41+
*.scss text eol=lf
42+
*.sh text eol=lf
43+
*.sql text
44+
*.styl text
45+
*.tag text
46+
*.ts text
47+
*.tsx text
48+
*.xml text
49+
*.xhtml text
50+
51+
## DOCKER
52+
*.dockerignore text
53+
Dockerfile text
54+
55+
## DOCUMENTATION
56+
*.markdown text
57+
*.md text
58+
*.mdwn text
59+
*.mdown text
60+
*.mkd text
61+
*.mkdn text
62+
*.mdtxt text
63+
*.mdtext text
64+
*.txt text
65+
AUTHORS text
66+
CHANGELOG text
67+
CHANGES text
68+
CONTRIBUTING text
69+
COPYING text
70+
copyright text
71+
*COPYRIGHT* text
72+
INSTALL text
73+
license text
74+
LICENSE text
75+
NEWS text
76+
readme text
77+
*README* text
78+
TODO text
79+
80+
## TEMPLATES
81+
*.dot text
82+
*.ejs text
83+
*.haml text
84+
*.handlebars text
85+
*.hbs text
86+
*.hbt text
87+
*.jade text
88+
*.latte text
89+
*.mustache text
90+
*.njk text
91+
*.phtml text
92+
*.tmpl text
93+
*.tpl text
94+
*.twig text
95+
96+
## LINTERS
97+
.babelrc text
98+
.csslintrc text
99+
.eslintrc text
100+
.htmlhintrc text
101+
.jscsrc text
102+
.jshintrc text
103+
.jshintignore text
104+
.prettierrc text
105+
.stylelintrc text
106+
107+
## CONFIGS
108+
*.bowerrc text
109+
*.cnf text
110+
*.conf text
111+
*.config text
112+
.browserslistrc text
113+
.editorconfig text
114+
.gitattributes text
115+
.gitconfig text
116+
.gitignore text
117+
.htaccess 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

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10.22.1

0 commit comments

Comments
 (0)