Authored by 李奇

项目目录结构修改

Showing 100 changed files with 104 additions and 5 deletions

Too many changes to show.

To preserve performance only 100 of 100+ files are displayed.

vendors
... ...
{
"extends": "yoho",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"camelcase": "off",
"new-cap": "off"
},
"globals": {
"App": true,
"getApp": true,
"Page": true,
"Component": true
}
}
... ...
# Created by https://www.gitignore.io/api/node
### Node ###
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# End of https://www.gitignore.io/api/node
.stylelintcache
# IDE
.idea
.DS_Store
.vscode
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptSettings">
<option name="languageLevel" value="ES6" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" />
<component name="masterDetails">
<states>
... ...
registry=http://npm.yohops.com
... ...
vendors
... ...
{
"extends": "stylelint-config-yoho",
"rules": {
"string-quotes": "double",
"no-empty-source": null,
"unit-no-unknown": [true, {
"ignoreUnits": ["rpx"]
}]
}
}
... ...
... ... @@ -34,10 +34,9 @@
"pages/goodsList/brandStore"
],
"window": {
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#3a3a3a",
"backgroundColor": "#fff",
"backgroundTextStyle": "dark"
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
},
"tabBar": {
"borderStyle": "#e0e0e0",
... ...