diff options
| author | Kit Langton <[email protected]> | 2026-04-15 21:56:23 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-15 21:56:23 -0400 |
| commit | d6b14e24678db678163c281257322c5a9bf0e6fa (patch) | |
| tree | f3681988691b203ed5d766f47c9efb5af4f48beb /packages/plugin/src | |
| parent | 66257663509bc12bb208c4c65f73c45206106aae (diff) | |
| download | opencode-d6b14e24678db678163c281257322c5a9bf0e6fa.tar.gz opencode-d6b14e24678db678163c281257322c5a9bf0e6fa.zip | |
fix: prefix 32 unused parameters with underscore (#22694)
Diffstat (limited to 'packages/plugin/src')
| -rw-r--r-- | packages/plugin/src/example.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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({ |
