mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-16 01:07:06 +08:00
11 lines
278 B
VimL
11 lines
278 B
VimL
" Author: neersighted <bjorn@neersighted.com>
|
|
" Description: go vet for Go files
|
|
|
|
call ale#linter#Define('go', {
|
|
\ 'name': 'go vet',
|
|
\ 'output_stream': 'stderr',
|
|
\ 'executable': 'go',
|
|
\ 'command': 'go vet %t',
|
|
\ 'callback': 'ale#handlers#HandleUnixFormatAsError',
|
|
\})
|