加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 942 Bytes
一键复制 编辑 原始数据 按行查看 历史
江夏 提交于 2023-01-29 15:51 . style: 代码风格修复
module.exports = {
extends: ['@nuxtjs/eslint-config-typescript'],
parserOptions: {
parser: '@typescript-eslint/parser',
},
rules: {
indent: [0, 2],
'@typescript-eslint/no-unused-vars': 'warn',
'vue/singleline-html-element-content-newline': [
0,
{
// 配合printWidth
ignoreWhenNoAttributes: true,
ignoreWhenEmpty: true,
ignores: ['pre', 'textarea'],
}
],
'vue/multi-word-component-names': 'off',
'comma-dangle': [
'error',
{
// comma dangle
arrays: 'never',
objects: 'always', // 对象中最后一个属性 总是有分号
imports: 'never',
exports: 'never',
functions: 'never',
}
],
'vue/no-multiple-template-root': 0,
'vue/no-unused-vars': 1,
'vue/require-v-for-key': 0,
'no-console': 0,
'import/no-mutable-exports': 0,
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化