1 Star 0 Fork 0

Apis Cerana / vue-bag-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
yanghang 提交于 2023-08-18 17:56 . fix:完善框架菜单、布局
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vue/vue3-essential"
],
"overrides": [
{
"env": {
"node": true
},
"files": [
".eslintrc.{js,cjs}"
],
"parserOptions": {
"sourceType": "script"
}
}
],
"parserOptions": {
"ecmaVersion": "latest",
"parser": "@typescript-eslint/parser",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"vue"
],
"rules": {
"vue/multi-word-component-names": [
"off",
{
ignores: ["index"], //需要忽略的组件名
},
],
"indent": [
"error",
4
],
"linebreak-style": [
"off",
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"never"
],
'no-unused-vars': ['warn', { 'varsIgnorePattern': '^_' }], // 如需设置关闭 off
'@typescript-eslint/no-unused-vars': ['warn', { 'varsIgnorePattern': '^_' }],
'@typescript-eslint/no-explicit-any':['off']
}
}
1
https://gitee.com/apis-cerana/vue-bag-admin.git
git@gitee.com:apis-cerana/vue-bag-admin.git
apis-cerana
vue-bag-admin
vue-bag-admin
master

搜索帮助