diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 29 | ||||
| -rw-r--r-- | doc/configs.txt | 29 |
2 files changed, 58 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 1af69bf7..df1129bc 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -209,6 +209,7 @@ Nvim by running `:help lspconfig-all`. - [openedge_ls](#openedge_ls) - [openscad_ls](#openscad_ls) - [openscad_lsp](#openscad_lsp) +- [oxlint](#oxlint) - [pact_ls](#pact_ls) - [pasls](#pasls) - [pbls](#pbls) @@ -7402,6 +7403,34 @@ Default config: - `single_file_support` : `true` +## oxlint + +https://oxc.rs + +A collection of JavaScript tools written in Rust. + +```sh +npm install [-g] oxlint +``` + +Snippet to enable the language server: +```lua +require'lspconfig'.oxlint.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "oxc_language_server" } + ``` +- `filetypes` : + ```lua + { "astro", "javascript", "javascriptreact", "svelte", "typescript", "typescript.tsx", "typescriptreact", "vue" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/oxlint.lua:4](../lua/lspconfig/configs/oxlint.lua#L4) +- `single_file_support` : `false` + + ## pact_ls https://github.com/kadena-io/pact-lsp diff --git a/doc/configs.txt b/doc/configs.txt index 1af69bf7..df1129bc 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -209,6 +209,7 @@ Nvim by running `:help lspconfig-all`. - [openedge_ls](#openedge_ls) - [openscad_ls](#openscad_ls) - [openscad_lsp](#openscad_lsp) +- [oxlint](#oxlint) - [pact_ls](#pact_ls) - [pasls](#pasls) - [pbls](#pbls) @@ -7402,6 +7403,34 @@ Default config: - `single_file_support` : `true` +## oxlint + +https://oxc.rs + +A collection of JavaScript tools written in Rust. + +```sh +npm install [-g] oxlint +``` + +Snippet to enable the language server: +```lua +require'lspconfig'.oxlint.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "oxc_language_server" } + ``` +- `filetypes` : + ```lua + { "astro", "javascript", "javascriptreact", "svelte", "typescript", "typescript.tsx", "typescriptreact", "vue" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/oxlint.lua:4](../lua/lspconfig/configs/oxlint.lua#L4) +- `single_file_support` : `false` + + ## pact_ls https://github.com/kadena-io/pact-lsp |
