diff options
| author | github-actions <github-actions@github.com> | 2023-02-24 13:08:21 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2023-02-24 13:08:21 +0000 |
| commit | 62856b20751b748841b0f3ec5a10b1e2f6a6dbc9 (patch) | |
| tree | f2a4b0184bf5b89dfe45d24dba1e48a55d77527e | |
| parent | feat: add standardrb support (#2479) (diff) | |
| download | nvim-lspconfig-62856b20751b748841b0f3ec5a10b1e2f6a6dbc9.tar nvim-lspconfig-62856b20751b748841b0f3ec5a10b1e2f6a6dbc9.tar.gz nvim-lspconfig-62856b20751b748841b0f3ec5a10b1e2f6a6dbc9.tar.bz2 nvim-lspconfig-62856b20751b748841b0f3ec5a10b1e2f6a6dbc9.tar.lz nvim-lspconfig-62856b20751b748841b0f3ec5a10b1e2f6a6dbc9.tar.xz nvim-lspconfig-62856b20751b748841b0f3ec5a10b1e2f6a6dbc9.tar.zst nvim-lspconfig-62856b20751b748841b0f3ec5a10b1e2f6a6dbc9.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 30 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 30 |
2 files changed, 60 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 7af82293..dc745e0d 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -178,6 +178,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [spectral](#spectral) - [sqlls](#sqlls) - [sqls](#sqls) +- [standardrb](#standardrb) - [starlark_rust](#starlark_rust) - [steep](#steep) - [stylelint_lsp](#stylelint_lsp) @@ -7597,6 +7598,35 @@ require'lspconfig'.sqls.setup{} ``` +## standardrb + +https://github.com/testdouble/standard + +Ruby Style Guide, with linter & automatic code fixer. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.standardrb.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "standardrb", "--lsp" } + ``` + - `filetypes` : + ```lua + { "ruby" } + ``` + - `root_dir` : + ```lua + root_pattern("Gemfile", ".git") + ``` + + ## starlark_rust https://github.com/facebookexperimental/starlark-rust/ diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 7af82293..dc745e0d 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -178,6 +178,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [spectral](#spectral) - [sqlls](#sqlls) - [sqls](#sqls) +- [standardrb](#standardrb) - [starlark_rust](#starlark_rust) - [steep](#steep) - [stylelint_lsp](#stylelint_lsp) @@ -7597,6 +7598,35 @@ require'lspconfig'.sqls.setup{} ``` +## standardrb + +https://github.com/testdouble/standard + +Ruby Style Guide, with linter & automatic code fixer. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.standardrb.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "standardrb", "--lsp" } + ``` + - `filetypes` : + ```lua + { "ruby" } + ``` + - `root_dir` : + ```lua + root_pattern("Gemfile", ".git") + ``` + + ## starlark_rust https://github.com/facebookexperimental/starlark-rust/ |
