1 Star 0 Fork 9

suroc/fontend-demo

forked from jackzhujie/fontend-demo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
jackzhujie 提交于 2023-11-04 10:26 . feat: init
// ESlint 检查配置
module.exports = {
root: true,
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 2020,
sourceType: 'module',
requireConfigFile: false,
},
env: {
browser: true,
node: true,
es6: true,
},
extends: ['plugin:vue/vue3-recommended', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
globals: {
uni: true,
UniApp: true,
wx: true,
},
rules: {
'vue/multi-word-component-names': 'off', // 禁用该规则
'no-unused-vars': [1, { args: 'after-used', argsIgnorePattern: '^_' }],
'@typescript-eslint/ban-ts-comment': 1,
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/suroc/fontend-demo.git
git@gitee.com:suroc/fontend-demo.git
suroc
fontend-demo
fontend-demo
master

搜索帮助