📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-18 16:04:36 +00:00
parent 71b421806e
commit dd4c084042
416 changed files with 35467 additions and 3065 deletions
+3 -1
View File
@@ -3,7 +3,9 @@
* Used by run-evals-live.mjs (runtime) and validate-repo.test.mjs (tests).
*/
const RISK_CODE_RE = /\b([RT]\d+)\b/g;
// Only R1R6 / T1T6 are valid codes; \d+ would also match typos like R10 or
// stray text like "R20", polluting true/false-positive classification.
const RISK_CODE_RE = /\b([RT][1-6])\b/g;
export function extractRiskCodes(text) {
return new Set(text.match(RISK_CODE_RE) ?? []);