Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 9faa83b

Browse files
author
cesar_vldz
committedOct 4, 2017
Initial commit
0 parents  commit 9faa83b

File tree

83 files changed

+6748
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+6748
-0
lines changed
 

‎.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
10+
# We recommend you to keep these unchanged
11+
end_of_line = lf
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

‎.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
*~
5+
*.sw[mnpcod]
6+
*.log
7+
*.tmp
8+
*.tmp.*
9+
log.txt
10+
*.sublime-project
11+
*.sublime-workspace
12+
.vscode/
13+
npm-debug.log*
14+
15+
.idea/
16+
.sourcemaps/
17+
.sass-cache/
18+
.tmp/
19+
.versions/
20+
coverage/
21+
dist/
22+
node_modules/
23+
tmp/
24+
temp/
25+
hooks/
26+
platforms/
27+
plugins/
28+
plugins/android.json
29+
plugins/ios.json
30+
www/
31+
$RECYCLE.BIN/
32+
33+
.DS_Store
34+
Thumbs.db
35+
UserInterfaceState.xcuserstate

0 commit comments

Comments
 (0)
This repository has been archived.