fix(FN-5152): complete Step 7 — clear verification lint issue

Fusion-Task-Id: FN-5152
Fusion-Task-Lineage: 954570d8-82e1-4519-a739-c52ee790d2db
This commit is contained in:
Fusion (runfusion.ai)
2026-05-19 10:50:47 -07:00
committed by gsxdsm
parent 8364be83d6
commit 2c6662f13b

View File

@@ -2457,7 +2457,7 @@ export class TriageProcessor {
}
function parseFileScopeFromPrompt(text: string): string[] {
const match = text.match(/^##\s+File Scope\s*\n([\s\S]*?)(?=^##\s+|\Z)/m);
const match = text.match(/^##\s+File Scope\s*\n([\s\S]*?)(?=^##\s+|$)/m);
if (!match) return [];
const entries: string[] = [];
for (const rawLine of match[1].split("\n")) {