summaryrefslogtreecommitdiff
path: root/ale_linters/go/gosimple.vim
blob: dbdc3fcf28fbb228c36e36c7b00633702ecf17aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" 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) . ' gosimple .'
endfunction

call ale#linter#Define('go', {
\   'name': 'gosimple',
\   'executable': 'gosimple',
\   'command_callback': 'ale_linters#go#gosimple#GetCommand',
\   'callback': 'ale#handlers#go#Handler',
\   'output_stream': 'both',
\   'lint_file': 1,
\})