From d6b14e24678db678163c281257322c5a9bf0e6fa Mon Sep 17 00:00:00 2001 From: Kit Langton Date: Wed, 15 Apr 2026 21:56:23 -0400 Subject: fix: prefix 32 unused parameters with underscore (#22694) --- packages/plugin/src/example.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/plugin') diff --git a/packages/plugin/src/example.ts b/packages/plugin/src/example.ts index 1cf042fe9..9d7e178a9 100644 --- a/packages/plugin/src/example.ts +++ b/packages/plugin/src/example.ts @@ -1,7 +1,7 @@ import { Plugin } from "./index.js" import { tool } from "./tool.js" -export const ExamplePlugin: Plugin = async (ctx) => { +export const ExamplePlugin: Plugin = async (_ctx) => { return { tool: { mytool: tool({ -- cgit v1.2.3