1 Star 0 Fork 45

qumalls/t-ui-plus

forked from wocwin/t-ui-plus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
wocwin 提交于 2023-02-03 18:22 . refactor:文档改造使用vitepress
module.exports = {
env: {
browser: true,
es2021: true,
'vue/setup-compiler-macros': true // 这是为了兼容defineProps这种API的
},
extends: [
'plugin:vue/vue3-recommended', // 兼容vue3语法规范
'airbnb-base',
'plugin:prettier/recommended',
],
parser: 'vue-eslint-parser', // 这个插件其实已经安装了,用来解析template语法
parserOptions: {
ecmaVersion: 'latest',
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
plugins: [
'vue',
'@typescript-eslint',
],
rules: {
'prettier/prettier': 'error',
'linebreak-style': ['error', 'windows'],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'no-console': import.meta.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': import.meta.env.NODE_ENV === 'production' ? 'warn' : 'off',
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
},
settings: {
'import/resolver': {
typescript: {}, // this loads <rootdir>/tsconfig.json to eslint
},
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/quxiaoren/t-ui-plus.git
git@gitee.com:quxiaoren/t-ui-plus.git
quxiaoren
t-ui-plus
t-ui-plus
dev

搜索帮助