加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 969 Bytes
一键复制 编辑 原始数据 按行查看 历史
suwo.zhang 提交于 2024-10-06 10:50 . init project
module.exports = {
root: true,
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/eslint-config-prettier'],
rules: {
'vue/multi-word-component-names': [
'off',
{
ignores: [],
},
],
'vue/attributes-order': [
'error',
{
order: ['DEFINITION', 'LIST_RENDERING', 'CONDITIONALS', 'RENDER_MODIFIERS', 'GLOBAL', ['UNIQUE', 'SLOT'], 'TWO_WAY_BINDING', 'OTHER_DIRECTIVES', 'OTHER_ATTR', 'EVENTS', 'CONTENT'],
alphabetical: false,
},
],
'vue/no-unused-vars': ['warn'],
'no-return-await': ['warn'],
'no-multiple-empty-lines': ['warn'],
eqeqeq: ['error', 'always'],
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
},
env: {
browser: true,
es2021: true,
node: true,
'vue/setup-compiler-macros': true,
},
globals: {
defineOptions: 'writable',
defineProps: 'readonly',
NodeJS: true,
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化