summaryrefslogtreecommitdiff
path: root/ale_linters/salt/salt_lint.vim
blob: 47f66d8330f6d1cc310a257616b0f159d26b86fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
" Author: Benjamin BINIER <poulpatine@gmail.com>
" Description: salt-lint, saltstack linter

call ale#Set('salt_salt_lint_executable', 'salt-lint')
call ale#Set('salt_salt_lint_options', '')

function! ale_linters#salt#salt_lint#GetCommand(buffer) abort
    return '%e' . ale#Pad(ale#Var(a:buffer, 'salt_salt_lint_options'))
    \   . ' --json'
endfunction

function! ale_linters#salt#salt_lint#Handle(buffer, lines) abort
    let l:output = []

    for l:error in ale#util#FuzzyJSONDecode(a:lines, [])
        call add(l:output, {
        \   'lnum': l:error.linenumber + 0,
        \   'code': l:error.id + 0,
        \   'text': l:error.message,
        \   'type': l:error.severity is# 'HIGH' ? 'E' : 'W',
        \})
    endfor

    return l:output
endfunction

call ale#linter#Define('salt', {
\   'name': 'salt_lint',
\   'aliases': ['salt-lint'],
\   'executable': {b -> ale#Var(b, 'salt_salt_lint_executable')},
\   'command': function('ale_linters#salt#salt_lint#GetCommand'),
\   'callback': 'ale_linters#salt#salt_lint#Handle'
\})