refactor: 统一代码风格并迁移至 ESLint 新配置

style(backend): 格式化模型文件代码
style(frontend): 调整组件代码格式
chore: 删除旧 ESLint 配置并添加新配置
refactor(backend): 重构模型定义语法
style: 统一箭头函数和对象属性简写
This commit is contained in:
zhang1106
2026-03-27 19:12:16 +08:00
parent 6a8d4144ff
commit 63f0cb570e
166 changed files with 15483 additions and 11170 deletions
+4 -4
View File
@@ -3,10 +3,10 @@
/**
* 命令行备份脚本
* 用于独立执行数据备份,支持环境迁移
*
*
* 使用方法:
* node scripts/backup.js [options]
*
*
* 选项:
* --output, -o 指定备份文件输出路径
* --description 备份描述
@@ -67,7 +67,7 @@ async function runBackup() {
try {
process.chdir(path.join(__dirname, '..'));
const { createBackup, getBackupPath } = require('../utils/backup');
const { sequelize } = require('../db');
@@ -76,7 +76,7 @@ async function runBackup() {
console.log('数据库连接成功\n');
const backupPath = options.output ? path.dirname(options.output) : getBackupPath();
console.log('备份配置:');
console.log(` 输出路径: ${backupPath}`);
console.log(` 包含文件: ${options.includeFiles ? '是' : '否'}`);