Răsfoiți Sursa

chore: generate

opencode-agent[bot] 4 săptămâni în urmă
părinte
comite
c3ddc85cca

+ 0 - 1
packages/opencode/src/auth/effect.ts

@@ -91,5 +91,4 @@ export namespace AuthEffect {
       return Service.of({ get, all, set, remove })
     }),
   )
-
 }

+ 1 - 5
packages/opencode/src/tool/truncate-effect.ts

@@ -58,11 +58,7 @@ export namespace TruncateEffect {
         }
       })
 
-      const output = Effect.fn("Truncate.output")(function* (
-        text: string,
-        options: Options = {},
-        agent?: Agent.Info,
-      ) {
+      const output = Effect.fn("Truncate.output")(function* (text: string, options: Options = {}, agent?: Agent.Info) {
         const maxLines = options.maxLines ?? MAX_LINES
         const maxBytes = options.maxBytes ?? MAX_BYTES
         const direction = options.direction ?? "head"

+ 0 - 1
packages/opencode/test/server/project-init-git.test.ts

@@ -112,7 +112,6 @@ describe("project.initGit endpoint", () => {
         vcs: "git",
         worktree: tmp.path,
       })
-
     } finally {
       await Instance.disposeAll()
       reloadSpy.mockRestore()