Open
Description
Hi,
Can we have an addition to the go linters for revive? https://github.com/mgechev/revive
I copied the golangci-lint definition and added this locally and it seems to work
function! neomake#makers#ft#go#revive() abort
return {
\ 'exe': 'revive',
\ 'args': ['%t'],
\ 'cwd': '%:h',
\ 'errorformat':
\ '%f:%l:%c: %m,' .
\ '%f:%l: %m'
\ }
endfunction
Thanks