Files
zed/extensions/ruby/src/language_servers.rs
Vitaly Slobodin 75775292b3 ruby: Add support for "rubocop" language server (#14661)
Hi, this pull request adds support for `rubocop` language server. I
noticed that `ruby-lsp` LS is becoming more popular but it still lacks
diagnostics support in Zed. To cover that missing feature, it could be
good to use `rubocop` LS to show diagnostics alongside with the running
Ruby LSP.

Release Notes:

- N/A

---------

Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
2024-07-17 17:29:42 -04:00

8 lines
108 B
Rust

mod rubocop;
mod ruby_lsp;
mod solargraph;
pub use rubocop::*;
pub use ruby_lsp::*;
pub use solargraph::*;