mattn / efm-langserver

General purpose Language Server
MIT License
1.32k stars 59 forks source link

does supporting mypy daemon go against to this project? #233

Closed haolian9 closed 1 year ago

haolian9 commented 1 year ago

hi, thanks for making this great lang server! i have a need that making efm-langserver support mypy daemon to get some improvements on linting.

If you have a large codebase to check, running mypy using the mypy daemon can be 10 or more times faster than the regular command-line mypy tool

mypy's doc says that, so mypy daemon does brings huge improvements, but it requires efm-langserver taking special cares to the daemon and specific way to communite between lsp client and mypy daemon.

i'm not sure if supporting mypy daemon goes against efm-langserver's design -- general purpose language server, would you consider supporting it?

haolian9 commented 1 year ago

after some thoughts, i think i should eventually have my own fork instead of complicating upstream.