📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-03 16:02:56 +00:00
parent ac7fffe532
commit 5cb67428bd
803 changed files with 78437 additions and 401 deletions
@@ -0,0 +1,16 @@
// Final-gate sanitizer: drops a rec with no citations left after
// unknown-citation + version-mismatch have run. Every rec must carry ≥1
// citation.
export const metadata = {
id: 'missing-citation',
description: 'Drop rec when citations[] is empty after other sanitizers.',
};
export function apply(rec, _ctx = {}) {
const cites = Array.isArray(rec.citations) ? rec.citations : [];
if (cites.length === 0) {
return { dropped: true, tag: 'missing-citation' };
}
return {};
}