代码拉取完成,页面将自动刷新
同步操作将从 秋雨/Vue3 AntV X6 2.0流程设计器 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'plugin:vue/vue3-recommended',
'standard',
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'vue',
],
rules: {
'prefer-const': 0, // 禁止let 自动转const
'comma-dangle': [2, 'always-multiline'], // 尾随逗号
// 空格
'comma-spacing': [2, { before: false, after: true }],
'comma-style': [2, 'last'],
'vue/comment-directive': 'off',
quotes: [2, 'single', { avoidEscape: true, allowTemplateLiterals: true }],
semi: [2, 'always'],
// 分号之前或之后放置不必要的空格
'semi-spacing': [2, { before: false, after: true }],
'space-before-blocks': [2, 'always'],
'space-before-function-paren': [
'error',
{
anonymous: 'always',
named: 'never',
asyncArrow: 'always',
},
],
'no-empty': 0,
'no-var': 'error', // 禁止使用 var
'no-tabs': 0,
'no-unused-vars': 1,
'no-mixed-spaces-and-tabs': 'error', // 不能空格与tab混用
'vue/html-closing-bracket-newline': 'off', // 不强制换行
'vue/singleline-html-element-content-newline': 'off', // 不强制换行
'vue/multiline-html-element-content-newline': 'off',
'vue/max-attributes-per-line': 'off',
'vue/html-self-closing': [
'error',
{
html: {
void: 'always',
normal: 'never',
component: 'any',
},
svg: 'always',
math: 'always',
},
],
// 组件名必须是多个单词
'vue/multi-word-component-names': 'off',
'vue/attribute-hyphenation': ['off', 'never'],
'vue/v-on-event-hyphenation': ['off',
'never',
{
autofix: false,
ignore: [],
},
],
// 'vue/first-attribute-linebreak': [
// 'error',
// {
// singleline: 'beside',
// multiline: 'beside',
// },
// ],
'vue/html-indent': [0],
'vue/order-in-components': [
'error',
{
order: [
'el',
'name',
'key',
'parent',
'functional',
['delimiters', 'comments'],
['components', 'directives', 'filters'],
'extends',
'mixins',
['provide', 'inject'],
'ROUTER_GUARDS',
'layout',
'middleware',
'validate',
'scrollToTop',
'transition',
'loading',
'inheritAttrs',
'model',
['props', 'propsData'],
'emits',
'setup',
'asyncData',
'data',
'fetch',
'head',
'computed',
'watch',
'watchQuery',
'LIFECYCLE_HOOKS',
'methods',
['template', 'render'],
'renderError',
],
},
],
},
globals: {
ref: 'readonly',
reactive: 'readonly',
watch: 'readonly',
provide: 'readonly',
inject: 'readonly',
computed: 'readonly',
onMounted: 'readonly',
onBeforeUnmount: 'readonly',
defineEmits: 'readonly',
nextTick: 'readonly',
defineProps: 'readonly',
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。