1 Star 1 Fork 99

wuxiaogu/ZSFlowEditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
秋雨 提交于 2021-11-09 11:57 . fix 节点用户编辑无法正确保存
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
// "plugin:vue/essential",
"plugin:vue/vue3-recommended",
"standard",
],
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
},
plugins: [
"vue",
],
rules: {
"comma-dangle": [2, "always-multiline"],
"comma-spacing": [2, { before: false, after: true }],
"comma-style": [2, "last"],
quotes: [2, "double", { avoidEscape: true, allowTemplateLiterals: true }],
semi: [2, "always"],
"semi-spacing": [2, { before: false, after: true }],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"vue/max-attributes-per-line": [
2,
{
singleline: 10,
multiline: {
max: 1,
allowFirstLine: false,
},
},
],
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/html-self-closing": ["error", {
html: {
void: "never",
normal: "never",
component: "any",
},
svg: "always",
math: "always",
}],
"vue/no-v-html": "off",
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wugu/zsflow-editor.git
git@gitee.com:wugu/zsflow-editor.git
wugu
zsflow-editor
ZSFlowEditor
master

搜索帮助