forked from treadpit/wx_calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
付登荣
committed
Sep 13, 2017
1 parent
eff1d2e
commit e43614e
Showing
16 changed files
with
2,180 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules/* | ||
.build/* | ||
dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
{ | ||
"env": { | ||
"browser": false, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended" | ||
], | ||
"globals": { | ||
"App": true, | ||
"Page": true, | ||
"getApp": true, | ||
"getCurrentPages": true, | ||
"wx": true | ||
}, | ||
"root": true, | ||
"rules": { | ||
"arrow-spacing": [ | ||
"error", | ||
{ | ||
"after": true, | ||
"before": true | ||
} | ||
], | ||
"comma-spacing": [ | ||
"error", | ||
{ | ||
"after": true, | ||
"before": false | ||
} | ||
], | ||
"eol-last": [ | ||
"error", | ||
"always" | ||
], | ||
"keyword-spacing": [ | ||
"error", | ||
{ | ||
"after": true, | ||
"before": true | ||
} | ||
], | ||
"no-console": [ | ||
"warn", | ||
{ | ||
} | ||
], | ||
"quotes": [ | ||
"error", | ||
"single", | ||
{ | ||
"allowTemplateLiterals": true, | ||
"avoidEscape": true | ||
} | ||
], | ||
"semi": [ | ||
"error", | ||
"always", | ||
{ | ||
"omitLastInOneLineBlock": false | ||
} | ||
], | ||
"space-before-blocks": [ | ||
"error", | ||
"always" | ||
], | ||
"space-infix-ops": [ | ||
"error" | ||
], | ||
"spaced-comment": [ | ||
"error", | ||
"always" | ||
], | ||
"strict": [ | ||
"error", | ||
"safe" | ||
], | ||
"valid-jsdoc": [ | ||
"error", | ||
{ | ||
"requireReturn": false | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
registry=https://registry.npm.taobao.org/ | ||
chromedriver_cdnurl = "http://npm.taobao.org/mirrors/chromedriver" | ||
disturl = "http://npm.taobao.org/dist" | ||
electron_mirror = "http://npm.taobao.org/mirrors/electron/" | ||
git4win_mirror = "http://npm.taobao.org/mirrors/git-for-windows" | ||
iojs_org_mirror = "http://npm.taobao.org/mirrors/iojs" | ||
nodejs_org_mirror = "http://npm.taobao.org/mirrors/node" | ||
nodist_iojs_mirror = "http://npm.taobao.org/mirrors/iojs" | ||
nodist_node_mirror = "http://npm.taobao.org/mirrors/node" | ||
nvm_iojs_org_mirror = "http://npm.taobao.org/mirrors/iojs" | ||
nvm_nodejs_org_mirror = "http://npm.taobao.org/mirrors/node" | ||
nvmw_iojs_org_mirror = "http://npm.taobao.org/mirrors/iojs" | ||
nvmw_nodejs_org_mirror = "http://npm.taobao.org/mirrors/node" | ||
nvmw_npm_mirror = "http://npm.taobao.org/mirrors/npm" | ||
operadriver_cdnurl = "http://npm.taobao.org/mirrors/operadriver" | ||
phantomjs_cdnurl = "http://npm.taobao.org/mirrors/phantomjs" | ||
python_mirror = "http://npm.taobao.org/mirrors/python" | ||
sass_binary_site = "http://npm.taobao.org/mirrors/node-sass" | ||
sqlite3_binary_site = "http://npm.taobao.org/mirrors/sqlite3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"defaultSeverity": "error", | ||
"extends": "stylelint-config-wxss", | ||
"plugins": [ | ||
"stylelint-no-z-index" | ||
], | ||
"rules": { | ||
"at-rule-no-vendor-prefix": [ | ||
true | ||
], | ||
"indentation": "tab", | ||
"media-feature-name-no-vendor-prefix": [ | ||
true | ||
], | ||
"no-missing-end-of-source-newline": null, | ||
"plugin/no-z-index": 2, | ||
"property-no-vendor-prefix": [ | ||
true | ||
], | ||
"selector-max-compound-selectors": 1, | ||
"selector-no-vendor-prefix": [ | ||
true | ||
], | ||
"selector-type-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreTypes": [ | ||
"page", | ||
"navigator" | ||
] | ||
} | ||
], | ||
"unit-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreUnits": [ | ||
"rpx" | ||
] | ||
} | ||
], | ||
"value-no-vendor-prefix": [ | ||
true | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"navigationBarTitleText": "时间选择器" | ||
} |
Empty file.
Empty file.
Oops, something went wrong.