加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
DESKTOP-JG2GKKO\Admin 提交于 2024-04-23 10:08 . init
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'@electron-toolkit'
// '@vue/eslint-config-prettier'
],
rules: {
semi: ['error', 'never'], // 禁止分号
quotes: ['error', 'single'], // 使用单引号
indent: ['error', 4, { SwitchCase: 1 }], // 4格缩进-js
'vue/html-indent': ['error', 4], // 4格缩进-html
'vue/no-reserved-keys': ['error'], // 禁止使用保留字段
'vue/max-attributes-per-line': 'off', // 标签不强制换换行
'vue/singleline-html-element-content-newline': 'off', // 标签内容不强制换行
'vue/html-closing-bracket-spacing': 'off', // 标签结束不强制空格
'vue/component-definition-name-casing': ['error', 'PascalCase'], // 组件名称
'no-undef': 2, //不可以有未声明的变量
'no-unused-vars': 2,
'no-multiple-empty-lines': 2,
'vue/multi-word-component-names': 'off'
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化