加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 638 Bytes
一键复制 编辑 原始数据 按行查看 历史
% 提交于 2021-06-14 20:26 . 加上了eslint
module.exports = {
env: {
browser: true,
es2021: true,
node: true
},
extends: [
'plugin:vue/essential',
'standard'
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
plugins: [
'vue'
],
rules: {
// 'no-v-model-argument': 'off',
'no-multiple-template-root': 'off', // template 里面可以有多个根
'no-v-model-argument': 'off', // 分页的参数
'no-absolute-path': 'off', // 不判断import 的路径,因为不识别别名
'no-unused-vars': 'off', // 不判断是否被使用,因为 setup 里面没有return 了
'no-undef': 'off' // dayjs
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化