加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
licheng 提交于 2021-06-20 10:04 . 1
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/essential',
'@vue/standard'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// quote-props this.是为了屏蔽Home.vue line53的属性名称不能加单引号的检查
'quote-props': 0,
// 设为0就是为了屏蔽一些eslintrc语法检查
'space-before-function-paren': 0,
'no-trailing-spaces': 0,
'no-multiple-empty-lines': 0,
'indent': 0,
'comma-spacing': 0,
'key-spacing': 0,
'key-object-curly-spacing': 0,
'no-multi-spaces': 0,
'padded-blocks': 0,
'keyword-spacing': 0,
'space-infix-ops': 0,
'space-before-blocks': 0,
'space-before-blocks': 0,
'object-curly-newline': 0,
'spaced-comment': 0,
'object-curly-spacing': 0,
'no-tabs': 0,
'no-mixed-spaces-and-tabs': 0,
'object-property-newline': 0,
'no-unused-vars': 0
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化