代码拉取完成,页面将自动刷新
同步操作将从 caihai123/vue-clean-admin 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
module.exports = {
root: true,
env: {
node: true,
},
extends: [
"plugin:vue/strongly-recommended",
"eslint:recommended",
"@vue/prettier",
],
parserOptions: {
ecmaVersion: 2020,
},
rules: {
"vue/html-closing-bracket-newline": [
"error",
{
singleline: "never", // 单行禁止在右括号前换行
multiline: "always", // 多行必须在右括号前换行
},
],
// 多行元素内容前后换行
"vue/multiline-html-element-content-newline": [
"error",
{
ignoreWhenEmpty: true,
allowEmptyLines: false,
},
],
// 组件属性进行排序
"vue/attributes-order": [
"error",
{
order: [
"DEFINITION",
"LIST_RENDERING",
"CONDITIONALS",
"RENDER_MODIFIERS",
"GLOBAL",
"UNIQUE",
"TWO_WAY_BINDING",
"OTHER_DIRECTIVES",
"OTHER_ATTR",
"EVENTS",
"CONTENT",
],
alphabetical: false,
},
],
"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",
],
},
],
eqeqeq: ["error", "always"], // 需要使用===和!==
"vue/eqeqeq": ["error"], // 需要使用===和!== (template中)
"vue/padding-line-between-blocks": ["error", "always"],
// 禁止存在未使用的属性
"vue/no-unused-properties": [
"error",
{
groups: ["props", "data", "computed", "methods"],
deepData: true,
},
],
// 禁止使用未定义的属性
"vue/no-undef-properties": [
"error",
{
ignores: ["/^\\$/", "/^\\_/", "/^\\m_/"],
},
],
"vue/no-v-text": ["error"], // 禁止使用v-text
"vue/multi-word-component-names": [0], // 关闭组件名称多词
"vue/no-empty-component-block": ["error"], // 禁止存在空组件块
"no-console": process.env.NODE_ENV === "production" ? "warn" : "warn",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "warn",
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。