1 Star 0 Fork 663

东吴小强 / vue-projectManage

forked from vilson / pearProject 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
545522390@qq.com 提交于 2018-03-16 12:00 . init
// http://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true,
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
// extends: 'standard',
extends: 'eslint:recommended',
// required to lint *.vue files
plugins: [
'html'
],
// add your custom rules here
'rules': {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow console
'no-console': 'off',
// allow unused
'no-unused-vars': 0,
// allow async-await
'generator-star-spacing': 0,
'no-undef': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
};
JavaScript
1
https://gitee.com/yanzw/vue-projectManage.git
git@gitee.com:yanzw/vue-projectManage.git
yanzw
vue-projectManage
vue-projectManage
master

搜索帮助