1 Star 0 Fork 0

zhangyong/vue-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 935 Bytes
一键复制 编辑 原始数据 按行查看 历史
张勇 提交于 2021-11-22 14:44 . feat: 图表布局测试
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// 强制 error
indent: ['error', 2, { SwitchCase: 1 }],
'vue/html-indent': ['error', 2],
'vue/html-quotes': ['error', 'double'],
'no-console': 'warn',
'no-debugger': 'warn',
// 推荐 warn
'max-len': ['warn', { code: 200 }],
'no-restricted-syntax': 'warn',
// 关闭 off
'linebreak-style': 'off',
'no-underscore-dangle': 'off',
'no-use-before-define': 'off',
'no-continue': 'off',
'guard-for-in': 'off',
'no-restricted-syntax': 'warn',
'global-require': 0,
'no-tabs': 'off',
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zy1956/vue-demo.git
git@gitee.com:zy1956/vue-demo.git
zy1956
vue-demo
vue-demo
master

搜索帮助