9fe7b1fe6a
Working directories are now set seperately from the commands so they can later be swapped out when running linters over projects is supported, and also better support filename mapping for running linters on other machines in future.
28 lines
850 B
VimL
28 lines
850 B
VimL
" Author: neersighted <bjorn@neersighted.com>
|
|
" Description: go vet for Go files
|
|
"
|
|
" Author: John Eikenberry <jae@zhar.net>
|
|
" Description: updated to work with go1.10
|
|
|
|
call ale#Set('go_go_executable', 'go')
|
|
call ale#Set('go_govet_options', '')
|
|
|
|
function! ale_linters#go#govet#GetCommand(buffer) abort
|
|
let l:options = ale#Var(a:buffer, 'go_govet_options')
|
|
|
|
return ale#go#EnvString(a:buffer)
|
|
\ . ale#Var(a:buffer, 'go_go_executable') . ' vet '
|
|
\ . (!empty(l:options) ? ' ' . l:options : '')
|
|
\ . ' .'
|
|
endfunction
|
|
|
|
call ale#linter#Define('go', {
|
|
\ 'name': 'govet',
|
|
\ 'aliases': ['go vet'],
|
|
\ 'output_stream': 'stderr',
|
|
\ 'executable': {b -> ale#Var(b, 'go_go_executable')},
|
|
\ 'cwd': '%s:h',
|
|
\ 'command': function('ale_linters#go#govet#GetCommand'),
|
|
\ 'callback': 'ale#handlers#go#Handler',
|
|
\ 'lint_file': 1,
|
|
\})
|