mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
17 lines
400 B
Lua
17 lines
400 B
Lua
---@brief
|
|
---
|
|
--- https://pypi.org/project/yls-yara/
|
|
---
|
|
--- An YLS plugin adding YARA linting capabilities.
|
|
---
|
|
--- This plugin runs yara.compile on every save, parses the errors, and returns list of diagnostic messages.
|
|
---
|
|
--- Language Server: https://github.com/avast/yls
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'yls', '-vv' },
|
|
filetypes = { 'yar', 'yara' },
|
|
root_markers = { '.git' },
|
|
}
|