16 lines
507 B
VimL
16 lines
507 B
VimL
" Author: Ben Reedy <https://github.com/breed808>
|
|
" Description: gosimple for Go files
|
|
|
|
function! ale_linters#go#gosimple#GetCommand(buffer) abort
|
|
return ale#path#BufferCdString(a:buffer) . ' '
|
|
\ . ale#go#EnvString(a:buffer) . 'gosimple .'
|
|
endfunction
|
|
|
|
call ale#linter#Define('go', {
|
|
\ 'name': 'gosimple',
|
|
\ 'executable': 'gosimple',
|
|
\ 'command': function('ale_linters#go#gosimple#GetCommand'),
|
|
\ 'callback': 'ale#handlers#go#Handler',
|
|
\ 'output_stream': 'both',
|
|
\ 'lint_file': 1,
|
|
\})
|