blob: cfa35dfc48704d69812e34a5d9423ce151831c89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---@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' },
}
|