系统管理

This commit is contained in:
ym1026
2025-09-05 16:40:35 +08:00
parent c778e4a300
commit c1cce63c85
24 changed files with 2220 additions and 411 deletions

View File

@@ -54,7 +54,7 @@ module.exports = {
'no-this-before-super': 0, // 在调用super()之前不能使用this或super
'no-undef': 2, // 不能有未定义的变量
'no-use-before-define': 2, // 未定义前不能使用
camelcase: 2, // 强制驼峰法命名
camelcase: 'off', // 关闭强制驼峰法命名
'vue/multi-word-component-names': 0,
'jsx-quotes': [2, 'prefer-double'], // 强制在JSX属性jsx-quotes中一致使用双引号
// 'react/sort-comp': 2, // 强制组件方法顺序