Skip to content

Commit b881aeb

Browse files
author
hqythu
committed
use yeoman to generate website
1 parent 0b61a9d commit b881aeb

Some content is hidden

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

52 files changed

+717
-10191
lines changed

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

.editorconfig

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

.gitignore

Lines changed: 4 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,4 @@
1-
# built application files
2-
*.apk
3-
*.ap_
4-
5-
# files for the dex VM
6-
*.dex
7-
8-
# Java class files
9-
*.class
10-
11-
# Java error log files
12-
hs_err_pid*.log
13-
14-
# generated files
15-
bin/
16-
gen/
17-
18-
# Local configuration file (sdk path, etc)
19-
local.properties
20-
21-
# Proguard folder generated by Eclipse
22-
proguard/
23-
24-
# Intellij project files
25-
*.iml
26-
*.ipr
27-
*.iws
28-
.idea/
29-
30-
# Android Studio files
31-
.gradle/
32-
build
33-
34-
# Tmp files of editors
35-
*.swp
36-
37-
# log files
38-
*.log
39-
40-
# Mac OS X Desktop Service Store files
41-
.DS_Store
42-
43-
#server compiled file
44-
*.pyc
45-
46-
target
47-
*.orig
48-
49-
# Build Setings for aTUNet
50-
release.keystore
51-
build.properties
52-
1+
node_modules
2+
dist
3+
.tmp
4+
bower_components

.jshintrc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"node": true,
3+
"browser": true,
4+
"esnext": true,
5+
"bitwise": true,
6+
"camelcase": true,
7+
"curly": true,
8+
"eqeqeq": true,
9+
"immed": true,
10+
"indent": 2,
11+
"latedef": true,
12+
"newcap": true,
13+
"noarg": true,
14+
"quotmark": "single",
15+
"undef": true,
16+
"unused": true,
17+
"strict": true,
18+
"trailing": true,
19+
"smarttabs": true,
20+
"jquery": true
21+
}

.yo-rc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"generator-mocha": {}
3+
}

0 commit comments

Comments
 (0)