2016-10-11 11:57:42 +00:00
|
|
|
" Author: neersighted <bjorn@neersighted.com>
|
|
|
|
" Description: go vet for Go files
|
2018-02-25 11:39:45 +00:00
|
|
|
"
|
|
|
|
" Author: John Eikenberry <jae@zhar.net>
|
|
|
|
" Description: updated to work with go1.10
|
|
|
|
|
|
|
|
function! ale_linters#go#govet#GetCommand(buffer) abort
|
|
|
|
return ale#path#BufferCdString(a:buffer) . ' go vet .'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#go#govet#Handler(buffer, lines) abort
|
|
|
|
let l:pattern = '\v^([a-zA-Z]?:?[^:]+):(\d+):?(\d+)?:? ?(.+)$'
|
|
|
|
let l:output = []
|
|
|
|
let l:dir = expand('#' . a:buffer . ':p:h')
|
|
|
|
|
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
|
|
|
call add(l:output, {
|
|
|
|
\ 'filename': ale#path#GetAbsPath(l:dir, l:match[1]),
|
|
|
|
\ 'lnum': l:match[2] + 0,
|
|
|
|
\ 'col': l:match[3] + 0,
|
|
|
|
\ 'text': l:match[4],
|
|
|
|
\ 'type': 'E',
|
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
return l:output
|
|
|
|
endfunction
|
2016-10-11 11:57:42 +00:00
|
|
|
|
|
|
|
call ale#linter#Define('go', {
|
|
|
|
\ 'name': 'go vet',
|
|
|
|
\ 'output_stream': 'stderr',
|
|
|
|
\ 'executable': 'go',
|
2018-02-25 11:39:45 +00:00
|
|
|
\ 'command_callback': 'ale_linters#go#govet#GetCommand',
|
|
|
|
\ 'callback': 'ale_linters#go#govet#Handler',
|
|
|
|
\ 'lint_file': 1,
|
2016-10-11 11:57:42 +00:00
|
|
|
\})
|