1 Star 5 Fork 0

小天/vue3+vite2+typescript电商后台管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
小天 提交于 2022-02-12 12:29 . 首次提交2022
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
},
extends: ['plugin:vue/vue3-strongly-recommended', 'standard', 'prettier'],
parserOptions: {
ecmaVersion: 13,
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
plugins: ['vue', '@typescript-eslint'],
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
},
rules: {
camelcase: ['warn', { properties: 'never' }],
'vue/no-mutating-props': 'warn',
},
overrides: [
{
files: ['src/api/**/*.ts'],
rules: {
camelcase: 'off',
},
},
],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaotianmy/vue3-vite2-typescript.git
git@gitee.com:xiaotianmy/vue3-vite2-typescript.git
xiaotianmy
vue3-vite2-typescript
vue3+vite2+typescript电商后台管理系统
master

搜索帮助