You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When visiting a buffer in a typescript project, only Typescript errors are shown in the diagnostic list. Eslint errors are not shown. VSCode properly displays eslint issues in this project, so I know that eslint is properly configured.
I have both typescript-language-server and vscode-eslint-language-server installed. Here's how I'm setting up lsp-bridge:
With pgrep I can see that the eslint server is in fact running.
In the messages buffer, I can see that the eslint server is detected
[LSP-Bridge] found language server: /home/kuba/.nvm/versions/node/v20.11.1/bin/typescript-language-server
[LSP-Bridge] found language server: /home/kuba/.nvm/versions/node/v20.11.1/bin/vscode-eslint-language-server
However, in the *lsp-bridge* buffer, I see that messages are sent to eslint server, but it doesn't seem to reply. The only Recv lines from the eslint server are Recv window/logMessage notification from 'vscode-eslint-language-server' after opening a file.
When visiting a buffer in a typescript project, only Typescript errors are shown in the diagnostic list. Eslint errors are not shown. VSCode properly displays eslint issues in this project, so I know that eslint is properly configured.
I have both
typescript-language-server
andvscode-eslint-language-server
installed. Here's how I'm setting up lsp-bridge:With
pgrep
I can see that the eslint server is in fact running.In the messages buffer, I can see that the eslint server is detected
However, in the
*lsp-bridge*
buffer, I see that messages are sent to eslint server, but it doesn't seem to reply. The onlyRecv
lines from the eslint server areRecv window/logMessage notification from 'vscode-eslint-language-server'
after opening a file.But no more
Recv
s than that.I'm using
vscode-langservers-extracted
v4.10.0Downgrading to
[email protected]
(npm install -g [email protected]
) and restarting emacs makes the eslint diagnostics work properlyThe text was updated successfully, but these errors were encountered: