Skip to content

Commit 30b8ae2

Browse files
committed
fix(qa-lab): annotate UX Matrix producer catch callback as unknown for oxlint
1 parent 3dc2d1a commit 30b8ae2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/qa/ux-matrix-evidence-producer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {
630630
console.log(`UX Matrix evidence: ${path.join(result.artifactBase, QA_EVIDENCE_FILENAME)}`);
631631
console.log(`UX Matrix entries: ${result.evidence.entries.length}`);
632632
})
633-
.catch((error) => {
633+
.catch((error: unknown) => {
634634
console.error(error instanceof Error ? error.stack || error.message : String(error));
635635
process.exitCode = 1;
636636
});

0 commit comments

Comments
 (0)