1 Star 0 Fork 12

tonyh/vue3-admin-antdv-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 714 Bytes
一键复制 编辑 原始数据 按行查看 历史
苏杰豪 提交于 2023-11-17 14:46 . 项目配置:jsx 的 eslint 配置
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-prettier/skip-formatting',
],
parserOptions: {
ecmaVersion: 'latest',
// jsx 支持
ecmaFeatures: {
jsx: true,
tsx: true,
},
},
rules: {
'vue/multi-word-component-names': [
'warn',
{
ignores: ['index'],
},
],
'prettier/prettier': [
'warn',
{
semi: false,
tabWidth: 2,
singleQuote: true,
printWidth: 100,
trailingComma: 'all',
endOfLine: 'auto',
},
],
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tonyhuang30/vue3-admin-antdv-template.git
[email protected]:tonyhuang30/vue3-admin-antdv-template.git
tonyhuang30
vue3-admin-antdv-template
vue3-admin-antdv-template
main

搜索帮助