aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2021-12-04 15:49:09 +0000
committergithub-actions <github-actions@github.com>2021-12-04 15:49:09 +0000
commitfe9f2a5c45df35d9d1ea9688b9c805a74ac5254d (patch)
tree38b0252a030a84d4bac958e82e5bde9879ebb9d7 /doc
parentfeat: add quick-lint-js (#1533) (diff)
downloadnvim-lspconfig-fe9f2a5c45df35d9d1ea9688b9c805a74ac5254d.tar
nvim-lspconfig-fe9f2a5c45df35d9d1ea9688b9c805a74ac5254d.tar.gz
nvim-lspconfig-fe9f2a5c45df35d9d1ea9688b9c805a74ac5254d.tar.bz2
nvim-lspconfig-fe9f2a5c45df35d9d1ea9688b9c805a74ac5254d.tar.lz
nvim-lspconfig-fe9f2a5c45df35d9d1ea9688b9c805a74ac5254d.tar.xz
nvim-lspconfig-fe9f2a5c45df35d9d1ea9688b9c805a74ac5254d.tar.zst
nvim-lspconfig-fe9f2a5c45df35d9d1ea9688b9c805a74ac5254d.zip
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
-rw-r--r--doc/server_configurations.md29
-rw-r--r--doc/server_configurations.txt29
2 files changed, 58 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 175c2761..ee066da5 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -83,6 +83,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi
- [pylsp](#pylsp)
- [pyre](#pyre)
- [pyright](#pyright)
+- [quick_lint_js](#quick_lint_js)
- [r_language_server](#r_language_server)
- [racket_langserver](#racket_langserver)
- [rescriptls](#rescriptls)
@@ -5307,6 +5308,34 @@ require'lspconfig'.pyright.setup{}
```
+## quick_lint_js
+
+https://quick-lint-js.com/
+
+quick-lint-js finds bugs in JavaScript programs.
+
+See installation [instructions](https://quick-lint-js.com/install/)
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.quick_lint_js.setup{}
+```
+
+**Commands and default values:**
+```lua
+ Commands:
+
+ Default Values:
+ cmd = { "quick-lint-js", "--lsp-server" }
+ filetypes = { "javascript" }
+ root_dir = function(startpath)
+ return M.search_ancestors(startpath, matcher)
+ end
+```
+
+
## r_language_server
[languageserver](https://github.com/REditorSupport/languageserver) is an
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index 175c2761..ee066da5 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -83,6 +83,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi
- [pylsp](#pylsp)
- [pyre](#pyre)
- [pyright](#pyright)
+- [quick_lint_js](#quick_lint_js)
- [r_language_server](#r_language_server)
- [racket_langserver](#racket_langserver)
- [rescriptls](#rescriptls)
@@ -5307,6 +5308,34 @@ require'lspconfig'.pyright.setup{}
```
+## quick_lint_js
+
+https://quick-lint-js.com/
+
+quick-lint-js finds bugs in JavaScript programs.
+
+See installation [instructions](https://quick-lint-js.com/install/)
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.quick_lint_js.setup{}
+```
+
+**Commands and default values:**
+```lua
+ Commands:
+
+ Default Values:
+ cmd = { "quick-lint-js", "--lsp-server" }
+ filetypes = { "javascript" }
+ root_dir = function(startpath)
+ return M.search_ancestors(startpath, matcher)
+ end
+```
+
+
## r_language_server
[languageserver](https://github.com/REditorSupport/languageserver) is an