-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug: can't make it work with vscode-eslint-language-server #3
Comments
I'm happy to help you dig further! At first look, it seems as though this arguably a bug in The LSP spec is notoriously complex, but If I read it correctly, it seems to me that in the transcript of that session, That said, on the [server-request] (id:0) Thu Jun 16 15:35:41 2022:
(:jsonrpc "2.0" :id 0 :method "client/registerCapability" :params
(:registrations
[(:id "dcfa99a0-12bc-4d8d-b2da-14ed6d106182" :method "workspace/didChangeConfiguration" :registerOptions nil)]))
[client-reply] (id:0) Thu Jun 16 15:35:41 2022:
(:jsonrpc "2.0" :id 0 :result nil)
[server-request] (id:1) Thu Jun 16 15:35:41 2022:
(:jsonrpc "2.0" :id 1 :method "client/registerCapability" :params
(:registrations
[(:id "234a266a-0363-4598-ba68-392b41dd2801" :method "workspace/didChangeWorkspaceFolders" :registerOptions nil)]))
[client-reply] (id:1) Thu Jun 16 15:35:41 2022: And so then the All that said, this is one of the spaces that a tool like To dynamically patch up gaps in communication between LSP client and server. I think we should be able to provide a "middleware" to add things like "workplace.configuration" defaults. In fact, I see the ability to add plugins and middleware to |
Ohhh I see it. Well, you're right, I took a pick on the I think on eglot we miss something like: https://github.com/emacs-lsp/lsp-mode/blob/master/clients/lsp-eslint.el#L261C5-L261C6 But I might be wrong.
|
How about this as an approach: We introduce the concept of middleware and then write a middleware to provide a default workspace configuration if none is provided. Then, if that works well, we can think about making the middleware pluggable. I wonder wha the workspace configuration we return be given what little context we have (I think we basically know the current working directory of |
Sounds like a plan! Regardless of where
Emacs users would likely create a function to configure Eglot, using If necessary, we could also introduce middleware-specific options, such as |
@LionyxML Step one is complete. We have middleware. Now the question is: what should the conversation between |
@LionyxML I don't use eslint myself. Do you have a public project configured that I can use for testing? |
Here's a sample project: https://github.com/LionyxML/react-ts-eslint-prettier-sample A screenshot of all errors (typescript and eslint (and prettier via eslint plugin)) via LSP on neovim: ![]() It expects You can run eslint as a regular linter (non lsp) on terminal with ![]() And files containing errors are:
I hope it helps :)
|
Where do you get the actual
|
I have an alias I execute every time I enter a new node project (usually with asdf or nvm to change versions), it installs all that I need:
This
|
I am trying to run
C-u M-x eglot RET
and passlspx --lsp "typescript-language-server --stdio" --lsp "vscode-eslint-language-server --stdio"
as the server command.I get the the typescript language server capabilities, but nothing regarding eslint.
If I try it with only
lspx --lsp "vscode-eslint-language-server --stdio"
it will also not work.The *Messages* buffer gives me an eglot warning:
[eglot] (warning) Server tried to register unsupported capability `workspace/didChangeWorkspaceFolders'
On the EGLOT buffer I can see it sending / receiving requests when I save a buffer.
So I tried
vscode-eslint-language-server --stdio
directly afterC-u M-x eglot RET
and to my surprise, it also did not worked.After a bit of digging I found this issue from 2022: joaotavora/eglot#976, which looks like exactly what is happening here (my log is similar).
It looks like this
eglot
never really got fixed to work with this server, as the answers either tells you to use theflymake-eslint
package (non lsp) or tells you to use the eslint plugin that puts messages of eslint lsp inside typescript (now an unsupported plugin for newer versions).Can you help me dig a bit further? It looks like a real
eglot
and notlspx
bug, and this is a vital lsp server 🤕, if we can confirm I am not the only one who can't use this server with Eglot, maybe an issue toeglot
might be better suited.The text was updated successfully, but these errors were encountered: