fix(ci): satisfy lint contracts-ready lane

This commit is contained in:
imccyu
2026-08-11 19:07:16 +08:00
parent ac01c3b035
commit 3727e242cd
4 changed files with 6 additions and 17 deletions

View File

@@ -229,10 +229,8 @@ function forwardedSettings(ns: string): HostFrame {
return {
type: 'host/remote-event',
event: 'settings/document-updated',
/* oxlint-disable-next-line typescript/no-unsafe-assignment --
* expect.any is typed `any`; the frame's args are JsonValue[]. The
* revision is the Host's own counter, so the matcher is the assertion. */
args: [ns, expect.any(Number)],
// The revision is the Host's own counter, so the matcher is the assertion.
args: [ns, expect.any(Number)], // oxlint-disable-line typescript/no-unsafe-assignment
}
}