Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1ed839d

Browse files
author
Marek Kulik
committedSep 14, 2016
Update code to current state of art
1 parent 0125981 commit 1ed839d

34 files changed

+1342
-524
lines changed
 

‎.gitattributes

+171-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,173 @@
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 - Handle line endings automatically for files detected
13+
## as text and leave all files detected as binary untouched.
14+
## This will handle all files NOT defined below.
215
* text=auto
316

4-
# Custom for Visual Studio
5-
*.cs diff=csharp
6-
7-
# Standard to msysgit
8-
*.doc diff=astextplain
9-
*.DOC diff=astextplain
10-
*.docx diff=astextplain
11-
*.DOCX diff=astextplain
12-
*.dot diff=astextplain
13-
*.DOT diff=astextplain
14-
*.pdf diff=astextplain
15-
*.PDF diff=astextplain
16-
*.rtf diff=astextplain
17-
*.RTF diff=astextplain
17+
## SOURCE CODE
18+
*.bat text
19+
*.coffee text
20+
*.css text
21+
*.htm text
22+
*.html text
23+
*.inc text
24+
*.ini text
25+
*.js text
26+
*.jsx text
27+
*.json text
28+
*.less text
29+
*.php text
30+
*.pl text
31+
*.py text
32+
*.rb text
33+
*.sass text
34+
*.scm text
35+
*.scss text
36+
*.sh text
37+
*.sql text
38+
*.styl text
39+
*.ts text
40+
*.xml text
41+
*.xhtml text
42+
43+
## DOCUMENTATION
44+
*.markdown text
45+
*.md text
46+
*.mdwn text
47+
*.mdown text
48+
*.mkd text
49+
*.mkdn text
50+
*.mdtxt text
51+
*.mdtext text
52+
*.txt text
53+
AUTHORS text
54+
CHANGELOG text
55+
CHANGES text
56+
CONTRIBUTING text
57+
COPYING text
58+
INSTALL text
59+
license text
60+
LICENSE text
61+
NEWS text
62+
readme text
63+
*README* text
64+
TODO text
65+
66+
## TEMPLATES
67+
*.dot text
68+
*.ejs text
69+
*.haml text
70+
*.handlebars text
71+
*.hbs text
72+
*.hbt text
73+
*.jade text
74+
*.latte text
75+
*.mustache text
76+
*.phtml text
77+
*.tmpl text
78+
79+
## LINTERS
80+
.csslintrc text
81+
.eslintrc text
82+
.jscsrc text
83+
.jshintrc text
84+
.jshintignore text
85+
.stylelintrc text
86+
87+
## CONFIGS
88+
*.bowerrc text
89+
*.cnf text
90+
*.conf text
91+
*.config text
92+
.editorconfig text
93+
.gitattributes text
94+
.gitconfig text
95+
.gitignore text
96+
.htaccess text
97+
*.npmignore text
98+
*.yaml text
99+
*.yml text
100+
Makefile text
101+
makefile text
102+
103+
## HEROKU
104+
Procfile text
105+
.slugignore text
106+
107+
## GRAPHICS
108+
*.ai binary
109+
*.bmp binary
110+
*.eps binary
111+
*.gif binary
112+
*.ico binary
113+
*.jng binary
114+
*.jp2 binary
115+
*.jpg binary
116+
*.jpeg binary
117+
*.jpx binary
118+
*.jxr binary
119+
*.pdf binary
120+
*.png binary
121+
*.psb binary
122+
*.psd binary
123+
*.svg text
124+
*.svgz binary
125+
*.tif binary
126+
*.tiff binary
127+
*.wbmp binary
128+
*.webp binary
129+
130+
## AUDIO
131+
*.kar binary
132+
*.m4a binary
133+
*.mid binary
134+
*.midi binary
135+
*.mp3 binary
136+
*.ogg binary
137+
*.ra binary
138+
139+
## VIDEO
140+
*.3gpp binary
141+
*.3gp binary
142+
*.as binary
143+
*.asf binary
144+
*.asx binary
145+
*.fla binary
146+
*.flv binary
147+
*.m4v binary
148+
*.mng binary
149+
*.mov binary
150+
*.mp4 binary
151+
*.mpeg binary
152+
*.mpg binary
153+
*.swc binary
154+
*.swf binary
155+
*.webm binary
156+
157+
## ARCHIVES
158+
*.7z binary
159+
*.gz binary
160+
*.rar binary
161+
*.tar binary
162+
*.zip binary
163+
164+
## FONTS
165+
*.ttf binary
166+
*.eot binary
167+
*.otf binary
168+
*.woff binary
169+
*.woff2 binary
170+
171+
## EXECUTABLES
172+
*.exe binary
173+
*.pyc binary

‎app.js

-41
This file was deleted.

‎config.default.json

-28
This file was deleted.
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.