fix(FN-4186): stabilize workspace lint and test baselines

Fusion-Task-Id: FN-4186
Fusion-Task-Lineage: 30721f11-a830-4549-aa91-d8c3186c0dcf
This commit is contained in:
Fusion
2026-05-13 20:02:30 -07:00
committed by gsxdsm
parent a2915fff10
commit d2242ecbb8

View File

@@ -10,7 +10,7 @@ import type { Logger } from "./logger.js";
const execAsync = promisify(exec);
const DEFAULT_TIMEOUT_MS = 30_000;
const MAX_BUFFER = 10 * 1024 * 1024;
const NOISE_LINE_RE = /^[\s{}()\[\];,]*$/;
const NOISE_LINE_RE = /^[\s{}()[\];,]*$/;
export interface ContributionSurvivalResult {
file: string;
@@ -129,7 +129,7 @@ async function resolveSubjectCommits(
.filter((entry) => entry.subject === subject)
.map((entry) => entry.sha);
} catch (error) {
mergerLog.warn(`audit recovery: failed resolving commits for subject \"${subject}\" — ${error instanceof Error ? error.message : String(error)}`);
mergerLog.warn(`audit recovery: failed resolving commits for subject "${subject}" — ${error instanceof Error ? error.message : String(error)}`);
return [];
}
}