nvim-lspconfig/lsp/diagnosticls.lua

15 lines
407 B
Lua

---@brief
---
--- https://github.com/iamcco/diagnostic-languageserver
---
--- Diagnostic language server integrate with linters.
---@type vim.lsp.Config
return {
-- Configuration from https://github.com/iamcco/diagnostic-languageserver#config--document
cmd = { 'diagnostic-languageserver', '--stdio' },
root_markers = { '.git' },
-- Empty by default, override to add filetypes.
filetypes = {},
}