Skip to content

Commit c0a7ed1

Browse files
committed
初始化
0 parents  commit c0a7ed1

Some content is hidden

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

43 files changed

+1446
-0
lines changed

.babelrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"presets": [
3+
["env", {
4+
"modules": false,
5+
"targets": {
6+
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
7+
}
8+
}],
9+
"stage-2"
10+
],
11+
"plugins": ["transform-runtime"],
12+
"env": {
13+
"test": {
14+
"presets": ["env", "stage-2"],
15+
"plugins": ["istanbul"]
16+
}
17+
}
18+
}

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/*.js
2+
config/*.js

.eslintrc.js

+167
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
// https://eslint.org/docs/user-guide/configuring
2+
3+
module.exports = {
4+
root: true,
5+
parser: 'babel-eslint',
6+
parserOptions: {
7+
sourceType: 'module'
8+
},
9+
env: {
10+
browser: true,
11+
},
12+
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
13+
extends: 'standard',
14+
// required to lint *.vue files
15+
plugins: [
16+
'html'
17+
],
18+
// add your custom rules here
19+
'rules': {
20+
// // allow paren-less arrow functions
21+
// 'arrow-parens': 0,
22+
// // allow async-await
23+
// 'generator-star-spacing': 0,
24+
// // allow debugger during development
25+
// 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
26+
"indent": [0, 2],
27+
"comma-dangle": ["error", "never"], //是否允许对象中出现结尾逗号
28+
"no-cond-assign": 2, //条件语句的条件中不允许出现赋值运算符
29+
"no-console": process.env.NODE_ENV === 'production' ? 2 : 0, //不允许出现console语句
30+
"no-constant-condition": 2, //条件语句的条件中不允许出现恒定不变的量
31+
"no-control-regex": 2, //正则表达式中不允许出现控制字符
32+
"no-debugger": process.env.NODE_ENV === 'production' ? 2 : 0, //不允许出现debugger语句
33+
"no-dupe-args": 2, //函数定义的时候不允许出现重复的参数
34+
"no-dupe-keys": 2, //对象中不允许出现重复的键
35+
"no-duplicate-case": 2, //switch语句中不允许出现重复的case标签
36+
"no-empty": 2, //不允许出现空的代码块
37+
"no-empty-character-class": 2, //正则表达式中不允许出现空的字符组
38+
"no-ex-assign": 2, //在try catch语句中不允许重新分配异常变量
39+
"no-extra-boolean-cast": 2, //不允许出现不必要的布尔值转换
40+
"no-extra-parens": 0, //不允许出现不必要的圆括号
41+
"no-extra-semi": 2, //不允许出现不必要的分号
42+
"no-func-assign": 2, //不允许重新分配函数声明
43+
"no-inner-declarations": ["error", "functions"], //不允许在嵌套代码块里声明函数
44+
"no-invalid-regexp": 2, //不允许在RegExp构造函数里出现无效的正则表达式
45+
"no-irregular-whitespace": 0, //不允许出现不规则的空格
46+
"no-negated-in-lhs": 2, //不允许在in表达式语句中对最左边的运算数使用取反操作
47+
"no-obj-calls": 2, //不允许把全局对象属性当做函数来调用
48+
"no-regex-spaces": 2, //正则表达式中不允许出现多个连续空格
49+
"quote-props": 2, //对象中的属性名是否需要用引号引起来
50+
"no-sparse-arrays": 2, //数组中不允许出现空位置
51+
"no-unreachable": 2, //在return,throw,continue,break语句后不允许出现不可能到达的语句
52+
"use-isnan": 2, //要求检查NaN的时候使用isNaN()
53+
"valid-jsdoc": ["error", {
54+
"requireReturn": false,
55+
"requireParamDescription": false,
56+
"requireReturnDescription": true
57+
}], //强制JSDoc注释
58+
"valid-typeof": ["error", {
59+
"requireStringLiterals": true
60+
}], //在使用typeof表达式比较的时候强制使用有效的字符串
61+
"block-scoped-var": 2, //将变量声明放在合适的代码块里
62+
"complexity": 0, //限制条件语句的复杂度
63+
"consistent-return": 2, //无论有没有返回值都强制要求return语句返回一个值
64+
"curly": ["error", "all"], //强制使用花括号的风格
65+
"default-case": 0, //在switch语句中需要有default语句
66+
"dot-notation": ["error", { "allowKeywords": false, "allowPattern": "" }], //获取对象属性的时候使用点号
67+
"eqeqeq": ["error", "smart"], //比较的时候使用严格等于
68+
"no-alert": 1, //不允许使用alert,confirm,prompt语句
69+
"no-caller": 2, //不允许使用arguments.callee和arguments.caller属性
70+
"guard-for-in": 0, //监视for in循环,防止出现不可预料的情况
71+
"no-div-regex": 2, //不能使用看起来像除法的正则表达式
72+
"no-else-return": 0, //如果if语句有return,else里的return不用放在else里
73+
"no-labels": ["error", {
74+
"allowLoop": false,
75+
"allowSwitch": false
76+
}], //不允许标签语句
77+
"no-eq-null": 2, //不允许对null用==或者!=
78+
"no-eval": 2, //不允许使用eval()
79+
"no-extend-native": 2, //不允许扩展原生对象
80+
"no-extra-bind": 2, //不允许不必要的函数绑定
81+
"no-fallthrough": 2, //不允许switch按顺序全部执行所有case
82+
"no-floating-decimal": 2, //不允许浮点数缺失数字
83+
"no-implied-eval": 2, //不允许使用隐式eval()
84+
"no-iterator": 2, //不允许使用__iterator__属性
85+
"no-lone-blocks": 2, //不允许不必要的嵌套代码块
86+
"no-loop-func": 2, //不允许在循环语句中进行函数声明
87+
"no-multi-spaces": 0, //不允许出现多余的空格
88+
"no-multi-str": 2, //不允许用\来让字符串换行
89+
"no-global-assign": 2, //不允许重新分配原生对象
90+
"no-new": 2, //不允许new一个实例后不赋值或者不比较
91+
"no-new-func": 2, //不允许使用new Function
92+
"no-new-wrappers": 2, //不允许使用new String,Number和Boolean对象
93+
"no-octal": 2, //不允许使用八进制字面值
94+
"no-octal-escape": 2, //不允许使用八进制转义序列
95+
"no-param-reassign": 0, //不允许重新分配函数参数"no-proto": 2, //不允许使用__proto__属性
96+
"no-redeclare": 2, //不允许变量重复声明
97+
"no-return-assign": 2, //不允许在return语句中使用分配语句
98+
"no-script-url": 2, //不允许使用javascript:void(0)
99+
"no-self-compare": 2, //不允许自己和自己比较
100+
"no-sequences": 2, //不允许使用逗号表达式
101+
"no-throw-literal": 2, //不允许抛出字面量错误 throw "error"
102+
"no-unused-expressions": 2, //不允许无用的表达式
103+
"no-void": 2, //不允许void操作符
104+
"no-warning-comments": [1, { "terms": ["todo", "fixme", "any other term"] }], //不允许警告备注
105+
"no-with": 2, //不允许使用with语句
106+
"radix": 1, //使用parseInt时强制使用基数来指定是十进制还是其他进制
107+
"vars-on-top": 0, //var必须放在作用域顶部
108+
"wrap-iife": [2, "any"], //立即执行表达式的括号风格
109+
"yoda": [2, "never", { "exceptRange": true }], //不允许在if条件中使用yoda条件
110+
"strict": [2, "function"], //使用严格模式
111+
"no-catch-shadow": 2, //不允许try catch语句接受的err变量与外部变量重名"no-delete-var": 2, //不允许使用delete操作符
112+
"no-label-var": 2, //不允许标签和变量同名
113+
"no-shadow": 2, //外部作用域中的变量不能与它所包含的作用域中的变量或参数同名
114+
"no-shadow-restricted-names": 2, //js关键字和保留字不能作为函数名或者变量名
115+
"no-undef": 2, //不允许未声明的变量
116+
"no-undef-init": 2, //不允许初始化变量时给变量赋值undefined
117+
"no-undefined": 2, //不允许把undefined当做标识符使用
118+
"no-unused-vars": [2, { "vars": "all", "args": "after-used" }], //不允许有声明后未使用的变量或者参数
119+
"no-use-before-define": [0, "nofunc"], //不允许在未定义之前就使用变量"indent": 2, //强制一致的缩进风格
120+
"brace-style": [2, "1tbs", { "allowSingleLine": false }], //大括号风格
121+
"camelcase": [2, { "properties": "never" }], //强制驼峰命名规则
122+
"comma-style": [2, "last"], //逗号风格
123+
"consistent-this": [0, "self"], //当获取当前环境的this是用一样的风格
124+
"eol-last": 0, //文件以换行符结束
125+
"func-names": 0, //函数表达式必须有名字
126+
"func-style": 0, //函数风格,规定只能使用函数声明或者函数表达式
127+
"key-spacing": [0, { "beforeColon": false, "afterColon": true }], //对象字面量中冒号的前后空格
128+
"max-nested-callbacks": 0, //回调嵌套深度
129+
"new-cap": [2, { "newIsCap": true, "capIsNew": false }], //构造函数名字首字母要大写
130+
"new-parens": 2, //new时构造函数必须有小括号
131+
"newline-after-var": 0, //变量声明后必须空一行
132+
"no-array-constructor": 2, //不允许使用数组构造器
133+
"no-inline-comments": 0, //不允许行内注释
134+
"no-lonely-if": 0, //不允许else语句内只有if语句
135+
"no-mixed-spaces-and-tabs": [0, "smart-tabs"], //不允许混用tab和空格
136+
"no-multiple-empty-lines": [2, { "max": 2 }], //空行最多不能超过两行
137+
"no-nested-ternary": 2, //不允许使用嵌套的三目运算符
138+
"no-new-object": 2, //禁止使用new Object()
139+
"fun-call-spacing": 0, //函数调用时,函数名与()之间不能有空格
140+
"no-ternary": 0, //不允许使用三目运算符
141+
"no-trailing-spaces": 2, //一行最后不允许有空格
142+
"no-underscore-dangle": 2, //不允许标识符以下划线开头
143+
"no-extra-parens": 0, //不允许出现多余的括号
144+
"one-var": 0, //强制变量声明放在一起
145+
"operator-assignment": 0, //赋值运算符的风格
146+
"padded-blocks": [2, "never"], //块内行首行尾是否空行
147+
"quote-props": 0, //对象字面量中属性名加引号
148+
"quotes": [1, "single", "avoid-escape"], //引号风格
149+
"semi": [0, "always"], //强制语句分号结尾
150+
"semi-spacing": [0, { "before": false, "after": true }], //分后前后空格
151+
"sort-vars": 0, //变量声明时排序
152+
"space-before-blocks": [0, "always"], //块前的空格
153+
"space-before-function-paren": [0, { "anonymous": "always", "named": "never" }], //函数定义时括号前的空格
154+
"space-infix-ops": [0, { "int32Hint": true }], //操作符周围的空格
155+
"keyword-spacing": 0, //关键字前后的空格
156+
"space-unary-ops": [0, { "words": true, "nonwords": false }], //一元运算符前后不要加空格
157+
"wrap-regex": 2, //正则表达式字面量用括号括起来
158+
"no-var": 0, //使用let和const代替var
159+
"generator-star-spacing": [0, "both"], //生成器函数前后空格
160+
"max-depth": 0, //嵌套块深度
161+
"max-len": 0, //一行最大长度,单位为字符
162+
"max-params": 0, //函数最多能有多少个参数
163+
"max-statements": 0, //函数内最多有几个声明
164+
"no-bitwise": 0, //不允许使用位运算符
165+
"no-plusplus": 0 //不允许使用++ --运算符
166+
}
167+
}

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.DS_Store
2+
node_modules/
3+
dist/
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
test/unit/coverage
8+
test/e2e/reports
9+
selenium-debug.log
10+
11+
# Editor directories and files
12+
.idea
13+
.vscode
14+
*.suo
15+
*.ntvs*
16+
*.njsproj
17+
*.sln

.postcssrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// https://github.com/michael-ciniawsky/postcss-load-config
2+
3+
module.exports = {
4+
"plugins": {
5+
// to edit target browsers: use "browserslist" field in package.json
6+
"autoprefixer": {}
7+
}
8+
}

README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# vue-demo
2+
3+
> A Vue.js project
4+
5+
## Build Setup
6+
7+
``` bash
8+
# install dependencies
9+
npm install
10+
11+
# serve with hot reload at localhost:8080
12+
npm run dev
13+
14+
# build for production with minification
15+
npm run build
16+
17+
# build for production and view the bundle analyzer report
18+
npm run build --report
19+
20+
# run unit tests
21+
npm run unit
22+
23+
# run e2e tests
24+
npm run e2e
25+
26+
# run all tests
27+
npm test
28+
```
29+
30+
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).

build/build.js

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
'use strict'
2+
require('./check-versions')()
3+
4+
process.env.NODE_ENV = 'production'
5+
6+
const ora = require('ora')
7+
const rm = require('rimraf')
8+
const path = require('path')
9+
const chalk = require('chalk')
10+
const webpack = require('webpack')
11+
const config = require('../config')
12+
const webpackConfig = require('./webpack.prod.conf')
13+
14+
const spinner = ora('building for production...')
15+
spinner.start()
16+
17+
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
18+
if (err) throw err
19+
webpack(webpackConfig, function (err, stats) {
20+
spinner.stop()
21+
if (err) throw err
22+
process.stdout.write(stats.toString({
23+
colors: true,
24+
modules: false,
25+
children: false,
26+
chunks: false,
27+
chunkModules: false
28+
}) + '\n\n')
29+
30+
if (stats.hasErrors()) {
31+
console.log(chalk.red(' Build failed with errors.\n'))
32+
process.exit(1)
33+
}
34+
35+
console.log(chalk.cyan(' Build complete.\n'))
36+
console.log(chalk.yellow(
37+
' Tip: built files are meant to be served over an HTTP server.\n' +
38+
' Opening index.html over file:// won\'t work.\n'
39+
))
40+
})
41+
})

build/check-versions.js

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
'use strict'
2+
const chalk = require('chalk')
3+
const semver = require('semver')
4+
const packageConfig = require('../package.json')
5+
const shell = require('shelljs')
6+
function exec (cmd) {
7+
return require('child_process').execSync(cmd).toString().trim()
8+
}
9+
10+
const versionRequirements = [
11+
{
12+
name: 'node',
13+
currentVersion: semver.clean(process.version),
14+
versionRequirement: packageConfig.engines.node
15+
}
16+
]
17+
18+
if (shell.which('npm')) {
19+
versionRequirements.push({
20+
name: 'npm',
21+
currentVersion: exec('npm --version'),
22+
versionRequirement: packageConfig.engines.npm
23+
})
24+
}
25+
26+
module.exports = function () {
27+
const warnings = []
28+
for (let i = 0; i < versionRequirements.length; i++) {
29+
const mod = versionRequirements[i]
30+
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
31+
warnings.push(mod.name + ': ' +
32+
chalk.red(mod.currentVersion) + ' should be ' +
33+
chalk.green(mod.versionRequirement)
34+
)
35+
}
36+
}
37+
38+
if (warnings.length) {
39+
console.log('')
40+
console.log(chalk.yellow('To use this template, you must update following to modules:'))
41+
console.log()
42+
for (let i = 0; i < warnings.length; i++) {
43+
const warning = warnings[i]
44+
console.log(' ' + warning)
45+
}
46+
console.log()
47+
process.exit(1)
48+
}
49+
}

build/dev-client.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* eslint-disable */
2+
'use strict'
3+
require('eventsource-polyfill')
4+
const hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
5+
6+
hotClient.subscribe(function (event) {
7+
if (event.action === 'reload') {
8+
window.location.reload()
9+
}
10+
})

0 commit comments

Comments
 (0)