1 Star 0 Fork 7

Xsir/vue3最佳实践

forked from 陈俊浩/vue3最佳实践 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1006 Bytes
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: [
'plugin:vue/vue3-essential',
'airbnb-base',
'vue-global-api',
],
globals: {
MYCONF: true,
MYCONST: true,
minemap: true,
},
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',
'no-console': 'off',
'vue/multi-word-component-names': 'off',
'no-param-reassign': 'off',
'no-unused-vars': 'off',
'max-len': 'off',
'no-nested-ternary': 'off',
'import/prefer-default-export': 'off',
'no-use-before-define': 'off',
'no-unused-expressions': 'off',
'vue/comment-directive': 'off',
semi: 0,
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'off',
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/pro_learner/vue3-best-practices.git
git@gitee.com:pro_learner/vue3-best-practices.git
pro_learner
vue3-best-practices
vue3最佳实践
master

搜索帮助