1 Star 0 Fork 1

yzc / vue3-admin-plus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
jzfai 提交于 2021-10-14 18:58 . add permission of role and code
//https://blog.csdn.net/Sheng_zhenzhen/article/details/108685176
//
module.exports = {
root: true,
env: {
browser: true,
commonjs: true,
es6: true,
node: true
},
globals: {
defineEmits: true,
document: true,
localStorage: true,
window: true,
defineProps: true,
defineExpose: true
},
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/typescript/recommended',
'@vue/prettier',
'@vue/prettier/@typescript-eslint'
],
parserOptions: {
ecmaVersion: 2021
},
rules: {
'linebreak-style': ['error', 'unix'],
'import/no-unresolved': 'off',
'import/extensions': 'off',
'import/no-absolute-path': 'off',
'no-async-promise-executor': 'off',
'import/no-extraneous-dependencies': 'off',
'vue/no-multiple-template-root': 'off',
'vue/html-self-closing': 'off',
'no-console': 'off',
'no-plusplus': 'off',
'no-useless-escape': 'off',
'no-bitwise': 'off',
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/explicit-module-boundary-types': ['off'],
'@typescript-eslint/ban-ts-comment': ['off'],
'vue/no-setup-props-destructure': ['off'],
'@typescript-eslint/no-empty-function': ['off'],
//can config to 2 if need more then required
'@typescript-eslint/no-unused-vars': [1],
'no-param-reassign': ['off']
},
overrides: [
{
files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
env: {
jest: true
}
}
]
}
1
https://gitee.com/zhicao/vue3-admin-plus.git
git@gitee.com:zhicao/vue3-admin-plus.git
zhicao
vue3-admin-plus
vue3-admin-plus
master

搜索帮助