diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-15 16:24:29 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-15 16:24:29 +0000 |
commit | 290ed4885b2f0dbbbe9fcbfb12216f89b2e63924 (patch) | |
tree | 2bf47b068c49b6e63c62eb40089aae7d6b9bf830 /ale_linters/go | |
parent | e12e5c912cd42abe4aebf54c21f57f5a8c735dc6 (diff) | |
download | ale-290ed4885b2f0dbbbe9fcbfb12216f89b2e63924.zip |
Fix #1131 - Capture both output streams for golint
Diffstat (limited to 'ale_linters/go')
-rw-r--r-- | ale_linters/go/golint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/go/golint.vim b/ale_linters/go/golint.vim index 708cf156..d580fda2 100644 --- a/ale_linters/go/golint.vim +++ b/ale_linters/go/golint.vim @@ -3,7 +3,7 @@ call ale#linter#Define('go', { \ 'name': 'golint', -\ 'output_stream': 'stderr', +\ 'output_stream': 'both', \ 'executable': 'golint', \ 'command': 'golint %t', \ 'callback': 'ale#handlers#unix#HandleAsWarning', |