Explorar el Código

chore: generate

opencode-agent[bot] hace 4 meses
padre
commit
2789b770aa
Se han modificado 1 ficheros con 1 adiciones y 4 borrados
  1. 1 4
      packages/opencode/src/tool/lsp.ts

+ 1 - 4
packages/opencode/src/tool/lsp.ts

@@ -42,10 +42,7 @@ export const LspTool = Tool.define(
     return {
       description: DESCRIPTION,
       parameters: Parameters,
-      execute: (
-        args: Schema.Schema.Type<typeof Parameters>,
-        ctx: Tool.Context,
-      ) =>
+      execute: (args: Schema.Schema.Type<typeof Parameters>, ctx: Tool.Context) =>
         Effect.gen(function* () {
           const file = path.isAbsolute(args.filePath) ? args.filePath : path.join(Instance.directory, args.filePath)
           yield* assertExternalDirectoryEffect(ctx, file)