summaryrefslogtreecommitdiff
path: root/ale_linters/go/gosimple.vim
blob: 09ea40b8cb73c073654811cbc2b94cf9a32c0742 (plain)
1
2
3
4
5
6
7
8
9
" Author: Ben Reedy <https://github.com/breed808>
" Description: gosimple for Go files

call ale#linter#Define('go', {
\   'name': 'gosimple',
\   'executable': 'gosimple',
\   'command': 'gosimple %t',
\   'callback': 'ale#handlers#HandleUnixFormatAsWarning',
\})