summaryrefslogtreecommitdiff
path: root/ale_linters/go/golint.vim
blob: d580fda2ded9f619c5e44512cf11701d2289ef9e (plain)
1
2
3
4
5
6
7
8
9
10
" Author: neersighted <bjorn@neersighted.com>
" Description: golint for Go files

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