1 Star 7 Fork 0

cookcode/vue3.0-template-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 901 Bytes
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
env: {
browser: true,
es2021: true,
commonjs: true,
es6: true,
node: true,
},
extends: ['airbnb-base', 'eslint:recommended', 'plugin:vue/vue3-recommended','prettier'],
parserOptions: {
ecmaVersion: 12,
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
plugins: ['vue', '@typescript-eslint'],
rules: {
'import/no-unresolved': 'off',
'import/extensions': 'off',
'import/no-absolute-path': 'off',
'import/no-extraneous-dependencies': 'off',
'vue/no-multiple-template-root': 'off',
'vue/html-self-closing': 'off',
// "consistent-return":"off", // 返回类型一致性
'no-console': 'off',
'no-plusplus':'off',
'no-bitwise':'off',
'no-param-reassign': [
'error',
{
props: true,
ignorePropertyModificationsFor: ['state', 'config'],
},
],
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/feifandeni/vue3.0-template-admin.git
git@gitee.com:feifandeni/vue3.0-template-admin.git
feifandeni
vue3.0-template-admin
vue3.0-template-admin
main

搜索帮助