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

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