mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-05 21:19:35 +00:00
chore: Enable typescript/no-explicit-any rule.
This commit is contained in:
@@ -105,6 +105,7 @@ describe("processDiscordMessage ack reactions", () => {
|
||||
sender: { label: "user" },
|
||||
});
|
||||
|
||||
// oxlint-disable-next-line typescript/no-explicit-any
|
||||
await processDiscordMessage(ctx as any);
|
||||
|
||||
expect(reactMessageDiscord).not.toHaveBeenCalled();
|
||||
@@ -117,6 +118,7 @@ describe("processDiscordMessage ack reactions", () => {
|
||||
sender: { label: "user" },
|
||||
});
|
||||
|
||||
// oxlint-disable-next-line typescript/no-explicit-any
|
||||
await processDiscordMessage(ctx as any);
|
||||
|
||||
expect(reactMessageDiscord).toHaveBeenCalledWith("c1", "m1", "👀", { rest: {} });
|
||||
|
||||
Reference in New Issue
Block a user