fix(lsp): use ruff server instead of ruff-lsp

This commit is contained in:
Ruben Fiszel
2024-08-22 16:32:32 +02:00
parent 5b2dd7573d
commit 88648af1cd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ RUN set -eux; \
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:1.45.4 --chmod=755 /usr/bin/deno /usr/bin/deno
+1 -1
View File
@@ -81,7 +81,7 @@ class DiagnosticLS(LanguageServerWebSocketHandler):
class RuffLS(LanguageServerWebSocketHandler):
procargs = ["ruff-lsp"]
procargs = ["ruff"]
class DenoLS(LanguageServerWebSocketHandler):