mirror of
https://github.com/dense-analysis/ale
synced 2024-12-27 00:22:28 +00:00
10 lines
277 B
VimL
10 lines
277 B
VimL
" Author: Ben Reedy <https://github.com/breed808>
|
|
" Description: staticcheck for Go files
|
|
|
|
call ale#linter#Define('go', {
|
|
\ 'name': 'staticcheck',
|
|
\ 'executable': 'staticcheck',
|
|
\ 'command': 'staticcheck %t',
|
|
\ 'callback': 'ale#handlers#HandleUnixFormatAsWarning',
|
|
\})
|