feat: 🎸 接口对接调整

This commit is contained in:
2025-08-26 10:54:12 +08:00
parent 44a94b861a
commit 428b880970
21 changed files with 223 additions and 292 deletions

View File

@@ -31,7 +31,7 @@ export default defineConfig([
},
],
"react-hooks/exhaustive-deps": "warn",
"no-console": "warn",
"no-console": 1,
"react-hooks/rules-of-hooks": "error",
"no-nested-ternary": 0, // 允许嵌套三元表达式
"no-script-url": 0, // 允许javascript:;
@@ -47,6 +47,7 @@ export default defineConfig([
"react/no-deprecated": 0, // 关闭react弃用检测
"react/no-string-refs": 0,
"no-useless-escape": 0,
"react-refresh/only-export-components": 0, // 允许匿名导出
},
},
]);