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

25 lines
684 B
VimL
Raw Normal View History

" Author: Jelte Fennema <github-public@jeltef.nl>
" Description: gotype for Go files
2021-05-05 04:25:00 -04:00
function! ale_linters#go#gotype#GetExecutable(buffer) abort
if expand('#' . a:buffer . ':p') =~# '_test\.go$'
2018-07-19 08:52:53 -04:00
return ''
endif
2021-05-05 04:25:00 -04:00
return 'gotype'
endfunction
function! ale_linters#go#gotype#GetCommand(buffer) abort
return ale#go#EnvString(a:buffer) . 'gotype -e .'
endfunction
call ale#linter#Define('go', {
\ 'name': 'gotype',
\ 'output_stream': 'stderr',
2021-05-05 04:25:00 -04:00
\ 'executable': function('ale_linters#go#gotype#GetExecutable'),
\ 'cwd': '%s:h',
2019-03-08 06:04:56 -05:00
\ 'command': function('ale_linters#go#gotype#GetCommand'),
\ 'callback': 'ale#handlers#go#Handler',
\ 'lint_file': 1,
\})