1 Star 2 Fork 1

大大大,大志/vite-vue3-202303

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 979 Bytes
一键复制 编辑 原始数据 按行查看 历史
大大大,大志 提交于 2023-03-18 06:20 . feat: 初始化项目
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'],
},
],
"vue/multi-word-component-names": ["error", {
"ignores": []
}]
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jiaoshengzhi/vite-vue3-202303.git
git@gitee.com:jiaoshengzhi/vite-vue3-202303.git
jiaoshengzhi
vite-vue3-202303
vite-vue3-202303
main

搜索帮助