1 Star 0 Fork 0

血手人屠/vue3+ts后台管理系统脚手架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
shanshenghui 提交于 2022-04-12 14:07 . feat: 框架搭建
/*
* @Author: shanshenghui shanshenghui@unisound.com
* @Date: 2022-04-12 12:15:36
* @Description: eslintrc
*/
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
'vue/setup-compiler-macros': true,
},
extends: ['plugin:vue/vue3-essential', 'airbnb-base', 'plugin:prettier/recommended'],
parserOptions: {
ecmaVersion: 12,
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
plugins: ['vue', '@typescript-eslint'],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'on',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'on',
'import/no-unresolved': 'off',
'vue/multi-word-component-names': 'off',
'import/extensions': 'off',
'import/no-absolute-path': 'off',
'import/no-extraneous-dependencies': 'off',
'vue/no-multiple-template-root': 'off',
'no-param-reassign': [
'error',
{
props: true,
ignorePropertyModificationsFor: ['state', 'config'],
},
],
},
settings: {},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xrwork/v3-ts-vite.git
git@gitee.com:xrwork/v3-ts-vite.git
xrwork
v3-ts-vite
vue3+ts后台管理系统脚手架
develop

搜索帮助