summaryrefslogtreecommitdiff
path: root/ale_linters/go/golint.vim
blob: 79bfaeb5eec108d68ae07bd063c8b185319cc70d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
" Author: neersighted <bjorn@neersighted.com>
" Description: golint for Go files

call ale#Set('go_golint_executable', 'golint')
call ale#Set('go_golint_options', '')

function! ale_linters#go#golint#GetCommand(buffer) abort
    let l:options = ale#Var(a:buffer, 'go_golint_options')

    return ale#go#EnvString(a:buffer) . '%e'
    \   . (!empty(l:options) ? ' ' . l:options : '')
    \   . ' %t'
endfunction

call ale#linter#Define('go', {
\   'name': 'golint',
\   'output_stream': 'both',
\   'executable': {b -> ale#Var(b, 'go_golint_executable')},
\   'command': function('ale_linters#go#golint#GetCommand'),
\   'callback': 'ale#handlers#unix#HandleAsWarning',
\})