加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 774 Bytes
一键复制 编辑 原始数据 按行查看 历史
XieTiansheng 提交于 2021-03-22 15:52 . swagger前端替代工具2.0发布
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'eslint:recommended',
'plugin:vue/base',
'plugin:vue/essential',
'plugin:vue/strongly-recommended',
'plugin:vue/recommended',
'@vue/standard',
'@vue/typescript'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'vue/max-attributes-per-line': ['error', {
'singleline': 5,
'multiline': {
'max': 1,
'allowFirstLine': false
}
}],
'no-unused-vars': 'off',
'vue/no-v-html': 'off',
"vue/singleline-html-element-content-newline": "off"
},
parserOptions: {
parser: '@typescript-eslint/parser'
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化