Skip to content

Commit b7c7fe6

Browse files
committed
fix(report): remove legacy watchlist fixtures
1 parent 4f8c0ab commit b7c7fe6

4 files changed

Lines changed: 19 additions & 14 deletions

File tree

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ detector, or defect probability model.
2121
<strong>Findings</strong>
2222
<span>Threshold and detector signals that merit review.</span>
2323
</div>
24-
<div class="hotspots">
24+
<div class="coverage">
2525
<strong>Coverage</strong>
2626
<span>Execution receipts and explicit observed, partial, or unavailable analysis.</span>
2727
</div>

docs/theme/reforge.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ pre,
215215
border-top: 3px solid var(--reforge-amber);
216216
}
217217

218-
.signal-key .hotspots {
218+
.signal-key .coverage {
219219
border-top: 3px solid var(--reforge-blue);
220220
}
221221

src/output/human.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ fn render_human_report_view<'report>(
9898

9999
if report.findings.is_empty() {
100100
context.output.push('\n');
101-
context.output.push_str(
102-
"No threshold signals found. Watchlist entries are review targets, not findings.\n",
103-
);
101+
context
102+
.output
103+
.push_str("No unsuppressed threshold signals found.\n");
104104
return output;
105105
}
106106

web/report-app/index.html

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
<body>
99
<script id="reforge-report-data" type="application/json">
1010
{
11-
"schema_version": 21,
11+
"schema_version": 21,
1212
"summary": {
1313
"scanned_files": 0,
1414
"finding_count": 0,
15-
"hotspot_count": 0,
15+
"issue_count": 0,
1616
"similar_function_group_count": 0,
1717
"duration_ms": 0,
18-
"hotspot_model": "hybrid",
1918
"churn": {
2019
"mode": "auto",
2120
"enabled": false,
@@ -30,16 +29,22 @@
3029
"directories_scanned": 0,
3130
"function_candidates": 0
3231
},
33-
"metrics_summary": { "files": {}, "functions": {}, "types": {}, "churn": {} },
34-
"raw_metrics": { "files": [], "functions": [], "types": [] },
32+
"metrics_summary": { "directories": {}, "files": {}, "functions": {}, "types": {}, "churn": {} },
33+
"raw_metrics": { "directories": [], "files": [], "functions": [], "types": [] },
34+
"raw_metric_manifest": [],
3535
"dependency_graph": { "nodes": [], "edges": [] },
36-
"hotspots": [],
36+
"agent_evidence": { "files": [], "issues": [] },
37+
"unity_project": {},
3738
"suppression_summary": {
3839
"suppressed_count": 0,
39-
"suppressed_by_kind": {},
40-
"suppressed_by_severity": {},
41-
"highest_suppressed_priority": null
40+
"suppressed_by_kind": {}
4241
},
42+
"coverage_manifest": [],
43+
"coverage_summary": {},
44+
"detector_execution": [],
45+
"raw_metric_coverage": [],
46+
"issues": [],
47+
"detector_manifest": [],
4348
"findings": []
4449
}
4550
</script>

0 commit comments

Comments
 (0)