Skip to content

Commit 637293c

Browse files
docs: update configs.md
skip-checks: true
1 parent 8981192 commit 637293c

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

doc/configs.md

+29
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ Nvim by running `:help lspconfig-all`.
209209
- [openedge_ls](#openedge_ls)
210210
- [openscad_ls](#openscad_ls)
211211
- [openscad_lsp](#openscad_lsp)
212+
- [oxlint](#oxlint)
212213
- [pact_ls](#pact_ls)
213214
- [pasls](#pasls)
214215
- [pbls](#pbls)
@@ -7402,6 +7403,34 @@ Default config:
74027403
- `single_file_support` : `true`
74037404

74047405

7406+
## oxlint
7407+
7408+
https://oxc.rs
7409+
7410+
A collection of JavaScript tools written in Rust.
7411+
7412+
```sh
7413+
npm install [-g] oxlint
7414+
```
7415+
7416+
Snippet to enable the language server:
7417+
```lua
7418+
require'lspconfig'.oxlint.setup{}
7419+
```
7420+
7421+
Default config:
7422+
- `cmd` :
7423+
```lua
7424+
{ "oxc_language_server" }
7425+
```
7426+
- `filetypes` :
7427+
```lua
7428+
{ "astro", "javascript", "javascriptreact", "svelte", "typescript", "typescript.tsx", "typescriptreact", "vue" }
7429+
```
7430+
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/oxlint.lua:4](../lua/lspconfig/configs/oxlint.lua#L4)
7431+
- `single_file_support` : `false`
7432+
7433+
74057434
## pact_ls
74067435

74077436
https://github.com/kadena-io/pact-lsp

doc/configs.txt

+29
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ Nvim by running `:help lspconfig-all`.
209209
- [openedge_ls](#openedge_ls)
210210
- [openscad_ls](#openscad_ls)
211211
- [openscad_lsp](#openscad_lsp)
212+
- [oxlint](#oxlint)
212213
- [pact_ls](#pact_ls)
213214
- [pasls](#pasls)
214215
- [pbls](#pbls)
@@ -7402,6 +7403,34 @@ Default config:
74027403
- `single_file_support` : `true`
74037404

74047405

7406+
## oxlint
7407+
7408+
https://oxc.rs
7409+
7410+
A collection of JavaScript tools written in Rust.
7411+
7412+
```sh
7413+
npm install [-g] oxlint
7414+
```
7415+
7416+
Snippet to enable the language server:
7417+
```lua
7418+
require'lspconfig'.oxlint.setup{}
7419+
```
7420+
7421+
Default config:
7422+
- `cmd` :
7423+
```lua
7424+
{ "oxc_language_server" }
7425+
```
7426+
- `filetypes` :
7427+
```lua
7428+
{ "astro", "javascript", "javascriptreact", "svelte", "typescript", "typescript.tsx", "typescriptreact", "vue" }
7429+
```
7430+
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/oxlint.lua:4](../lua/lspconfig/configs/oxlint.lua#L4)
7431+
- `single_file_support` : `false`
7432+
7433+
74057434
## pact_ls
74067435

74077436
https://github.com/kadena-io/pact-lsp

0 commit comments

Comments
 (0)