7c643a2d9c
Read more here: https://github.com/w0rp/ale
10 lines
277 B
VimL
10 lines
277 B
VimL
" 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',
|
|
\})
|