mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 02:18:25 +00:00
chore: Enable "curly" rule to avoid single-statement if confusion/errors.
This commit is contained in:
@@ -3,7 +3,9 @@ import { LEGACY_CONFIG_RULES } from "./legacy.rules.js";
|
||||
import type { LegacyConfigIssue } from "./types.js";
|
||||
|
||||
export function findLegacyConfigIssues(raw: unknown): LegacyConfigIssue[] {
|
||||
if (!raw || typeof raw !== "object") return [];
|
||||
if (!raw || typeof raw !== "object") {
|
||||
return [];
|
||||
}
|
||||
const root = raw as Record<string, unknown>;
|
||||
const issues: LegacyConfigIssue[] = [];
|
||||
for (const rule of LEGACY_CONFIG_RULES) {
|
||||
@@ -26,12 +28,16 @@ export function applyLegacyMigrations(raw: unknown): {
|
||||
next: Record<string, unknown> | null;
|
||||
changes: string[];
|
||||
} {
|
||||
if (!raw || typeof raw !== "object") return { next: null, changes: [] };
|
||||
if (!raw || typeof raw !== "object") {
|
||||
return { next: null, changes: [] };
|
||||
}
|
||||
const next = structuredClone(raw) as Record<string, unknown>;
|
||||
const changes: string[] = [];
|
||||
for (const migration of LEGACY_CONFIG_MIGRATIONS) {
|
||||
migration.apply(next, changes);
|
||||
}
|
||||
if (changes.length === 0) return { next: null, changes: [] };
|
||||
if (changes.length === 0) {
|
||||
return { next: null, changes: [] };
|
||||
}
|
||||
return { next, changes };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user