6 Star 68 Fork 20

Liberty_liu / Everright-filter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.cjs 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Liberty_liu 提交于 2023-04-19 17:15 . feat: first submission
module.exports = {
env: {
browser: true,
es2021: true
},
extends: [
'plugin:vue/vue3-essential',
'standard'
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module'
},
plugins: [
'vue'
],
rules: {
'vue/multi-word-component-names': 'off',
'vue/no-export-in-script-setup': 'off',
'no-unused-vars': 'off',
'no-undef': 'off',
'no-debugger': 'off',
'vue/no-mutating-props': 'off',
'import/no-absolute-path': 'off',
'vue/prefer-import-from-vue': 'off',
'prefer-promise-reject-errors': 'off',
'n/no-callback-literal': 'off',
'promise/param-names': 'off',
'no-case-declarations': 'off',
'no-useless-escape': 'off',
'no-mixed-operators': 'off',
'no-async-promise-executor': 'off'
},
overrides: [
// {
// files: ['/Users/liuhaifeng/Documents/own/vue/Everright-editor/src/editor/panels/Config/Config.vue'], // 匹配views和二级目录中的index.vue
// rules: {
// 'vue/multi-word-component-names':"off",
// } //给上面匹配的文件指定规则
// },
]
}
1
https://gitee.com/Liberty_liu/Everright-filter.git
git@gitee.com:Liberty_liu/Everright-filter.git
Liberty_liu
Everright-filter
Everright-filter
main

搜索帮助