mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/ale_linters/go/govet.vim

28 lines
844 B
VimL
Raw Normal View History

" Author: neersighted <bjorn@neersighted.com>
" Description: go vet for Go files
"
" Author: John Eikenberry <jae@zhar.net>
" Description: updated to work with go1.10
2018-09-24 20:40:17 -04:00
call ale#Set('go_go_executable', 'go')
2018-08-25 12:13:42 -04:00
call ale#Set('go_govet_options', '')
function! ale_linters#go#govet#GetCommand(buffer) abort
2018-08-25 12:13:42 -04:00
let l:options = ale#Var(a:buffer, 'go_govet_options')
2018-09-24 20:40:17 -04:00
return ale#path#BufferCdString(a:buffer) . ' '
\ . ale#Var(a:buffer, 'go_go_executable') . ' vet '
2018-08-25 12:13:42 -04:00
\ . (!empty(l:options) ? ' ' . l:options : '')
2018-09-24 20:40:17 -04:00
\ . ' .'
endfunction
call ale#linter#Define('go', {
2018-07-30 17:18:16 -04:00
\ 'name': 'govet',
\ 'aliases': ['go vet'],
\ 'output_stream': 'stderr',
2019-03-08 06:04:56 -05:00
\ 'executable': {b -> ale#Var(b, 'go_go_executable')},
\ 'command': function('ale_linters#go#govet#GetCommand'),
\ 'callback': 'ale#handlers#go#Handler',
\ 'lint_file': 1,
\})