代码拉取完成,页面将自动刷新
同步操作将从 S-PMS/SPMS-Web 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
module.exports = {
root: true,
globals: {
defineEmits: 'readonly',
defineProps: 'readonly',
},
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-recommended',
'airbnb-base',
],
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 2020,
},
rules: {
indent: ['error', 2, {
SwitchCase: 1,
VariableDeclarator: {
var: 2, let: 2, const: 3,
},
MemberExpression: 1,
}],
'class-methods-use-this': 'off',
'import/named': 'off',
'max-len': 'off', // 强制一行的最大长度
'import/extensions': 'off', // 不验证导入文件扩展名
'vue/multi-word-component-names': 'off', // 不校验vue组件名称
'no-shadow': 'off', // 禁止变量声明与外层作用域的变量同名
'import/no-cycle': 'error', // 禁止一个模块导入一个有依赖路径的模块回到自己身上
semi: ['error', 'never'], // 不使用分号
eqeqeq: 'warn', // 要求使用 === 和 !==
'no-param-reassign': 'off', // 允许 function 的参数进行重新赋值
'import/prefer-default-export': 'off', // 禁用默认输出
'default-case': 'error', // switch 必须使用 default
'no-restricted-syntax': 'off', // 禁用特定的语法
'no-await-in-loop': 'error', // 禁止在循环中出现 await
'import/no-unresolved': 'off', // 确保导入指向一个可以解析的文件/模块
'@typescript-eslint/no-var-requires': 'off', // 允许require
'vue/no-setup-props-destructure': 'off',
},
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。