加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 1.93 KB
一键复制 编辑 原始数据 按行查看 历史
蔡华谦 提交于 2023-11-07 16:36 . feat: fix build checks
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
'vue/setup-compiler-macros': true // 开启setup语法糖环境
},
globals: {
defineOptions: true
},
extends: [
'plugin:vue/vue3-essential',
'plugin:@typescript-eslint/recommended',
'standard-with-typescript',
'plugin:prettier/recommended',
'plugin:json/recommended',
'./.eslintrc-auto-import.json'
],
overrides: [],
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 13,
sourceType: 'module',
project: ['tsconfig.json', './tsconfig.node.json'],
extraFileExtensions: ['.vue'],
parser: '@typescript-eslint/parser'
},
plugins: ['vue', '@typescript-eslint'],
rules: {
semi: [2, 'never'], // 禁止尾部使用分号“ ; ”
'no-var': 'error', // 禁止使用 var
'no-unused-vars': 'off',
'no-mixed-spaces-and-tabs': 'error', // 不能空格与tab混用
quotes: [2, 'single'], // 使用单引号
'vue/html-closing-bracket-newline': 'off', // 不强制换行
'vue/singleline-html-element-content-newline': 'off', // 不强制换行
'@typescript-eslint/promise-function-async': 'off',
'@typescript-eslint/no-explicit-any': ['off'],
'vue/multi-word-component-names': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/restrict-plus-operands': 'off', // 关闭操作符左右都要类型一样
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'vue/max-attributes-per-line': [
'error',
{
singleline: { max: 5 },
multiline: { max: 5 }
}
], // vue template模板元素第一行最多5个属性
'@typescript-eslint/ban-types': [
'error',
{
extendDefaults: true,
types: {
'{}': false
}
}
]
// 其它的规则可以去eslint查看,根据自己需要进行添加
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化