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

call ale#linter#Define('go', {
\   'name': 'staticcheck',
\   'executable': 'staticcheck',
\   'command': 'staticcheck %t',
\   'callback': 'ale#handlers#unix#HandleAsWarning',
\   'output_stream': 'both'
\})