summaryrefslogtreecommitdiff
path: root/ale_linters/go/golint.vim
blob: 8fe5b69b0350b014686aaf65f871e1133f53708f (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#HandleUnixFormatAsWarning',
\})