GitHub Action 1 mese fa
parent
commit
a35c278424
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. 5 1
      packages/opencode/src/lsp/server.ts

+ 5 - 1
packages/opencode/src/lsp/server.ts

@@ -13,7 +13,11 @@ import { Archive } from "../util/archive"
 
 
 export namespace LSPServer {
 export namespace LSPServer {
   const log = Log.create({ service: "lsp.server" })
   const log = Log.create({ service: "lsp.server" })
-  const pathExists = async (p: string) => fs.stat(p).then(() => true).catch(() => false)
+  const pathExists = async (p: string) =>
+    fs
+      .stat(p)
+      .then(() => true)
+      .catch(() => false)
 
 
   export interface Handle {
   export interface Handle {
     process: ChildProcessWithoutNullStreams
     process: ChildProcessWithoutNullStreams