Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit af1dd11

Browse files
committedNov 19, 2015
chore(build): initial commit
1 parent f83717a commit af1dd11

Some content is hidden

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

71 files changed

+1459
-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

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
13+
.idea/
14+
.sass-cache/
15+
.versions/
16+
coverage/
17+
dist/
18+
node_modules/
19+
tmp/
20+
temp/
21+
hooks/
22+
platforms/
23+
plugins/
24+
plugins/android.json
25+
plugins/ios.json
26+
www/build/
27+
$RECYCLE.BIN/
28+
29+
.DS_Store
30+
Thumbs.db
31+
UserInterfaceState.xcuserstate

0 commit comments

Comments
 (0)
This repository has been archived.