mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 15:31:05 +01:00
15 lines
367 B
Lua
15 lines
367 B
Lua
---@brief
|
|
---
|
|
--- https://quick-lint-js.com/
|
|
---
|
|
--- quick-lint-js finds bugs in JavaScript programs.
|
|
---
|
|
--- See installation [instructions](https://quick-lint-js.com/install/)
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'quick-lint-js', '--lsp-server' },
|
|
filetypes = { 'javascript', 'typescript' },
|
|
root_markers = { 'package.json', 'jsconfig.json', '.git' },
|
|
}
|