aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2023-02-24 13:08:21 +0000
committergithub-actions <github-actions@github.com>2023-02-24 13:08:21 +0000
commit62856b20751b748841b0f3ec5a10b1e2f6a6dbc9 (patch)
treef2a4b0184bf5b89dfe45d24dba1e48a55d77527e
parentfeat: add standardrb support (#2479) (diff)
downloadnvim-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.md30
-rw-r--r--doc/server_configurations.txt30
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/