加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 877 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joeshu 提交于 2023-05-17 17:02 . feat: v3.5.1 大版本变更
module.exports = {
root: true,
extends: ['alloy', 'alloy/vue', 'alloy/typescript'],
parser: 'vue-eslint-parser',
parserOptions: {
parser: {
js: '@babel/eslint-parser',
jsx: '@babel/eslint-parser',
ts: '@typescript-eslint/parser',
tsx: '@typescript-eslint/parser',
// Leave the template parser unspecified, so that it could be determined by `<script lang="...">`
},
},
env: {
browser: true,
node: true,
},
globals: {
uni: true,
wx: true,
},
rules: {
// 自定义你的规则
'no-console': 'off',
// js 和 ts 的规则重合
'no-undef': 'off',
// @typescript-eslint
'@typescript-eslint/prefer-optional-chain': 'off',
// vue
'vue/no-duplicate-attributes': [
'error',
{
allowCoexistClass: true,
allowCoexistStyle: true,
},
],
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化