2017-03-29 21:42:16 -04:00
|
|
|
" Author: Ben Reedy <https://github.com/breed808>
|
|
|
|
" Description: staticcheck for Go files
|
|
|
|
|
|
|
|
call ale#linter#Define('go', {
|
|
|
|
\ 'name': 'staticcheck',
|
|
|
|
\ 'executable': 'staticcheck',
|
|
|
|
\ 'command': 'staticcheck %t',
|
2017-04-24 17:27:18 -04:00
|
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
2017-09-12 14:53:23 -04:00
|
|
|
\ 'output_stream': 'both'
|
2017-03-29 21:42:16 -04:00
|
|
|
\})
|