fix(lsp): fix ruff integration

This commit is contained in:
Ruben Fiszel
2025-11-04 20:05:26 +00:00
parent 6b99bf5003
commit 0271a9f51d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ ENV PATH="${PATH}:/usr/local/go/bin"
ENV GOBIN=/usr/local/go/bin
RUN /usr/local/go/bin/go install -v golang.org/x/tools/gopls@latest
RUN pip3 install tornado python-lsp-jsonrpc ruff-lsp
RUN pip3 install tornado python-lsp-jsonrpc ruff
COPY --from=denoland/deno:2.2.1 --chmod=755 /usr/bin/deno /usr/bin/deno
+1 -1
View File
@@ -78,7 +78,7 @@ class DiagnosticLS(LanguageServerWebSocketHandler):
procargs = ["diagnostic-languageserver", "--stdio", "--log-level", "4"]
class RuffLS(LanguageServerWebSocketHandler):
procargs = ["ruff-lsp"]
procargs = ["ruff", "server"]
class DenoLS(LanguageServerWebSocketHandler):
procargs = ["deno", "lsp"]