diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-11-09 13:33:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 13:33:10 +0000 |
commit | c1fa88e78ccfeb98a688a209cd9f67da1bf076aa (patch) | |
tree | 2308b470534d2b6f5b1d55cdefd3e637d1c69d38 /ale_linters | |
parent | 8ef8a35462e9d3fbfe3fdf704e06ab957fb4ed7f (diff) | |
parent | bcc215c4e022704ffe77fb0cd8832c652e3414b0 (diff) | |
download | ale-c1fa88e78ccfeb98a688a209cd9f67da1bf076aa.zip |
Merge pull request #1105 from wuqiong4945/master
add 'output_stream': 'stderr', let golint work
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/go/golint.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ale_linters/go/golint.vim b/ale_linters/go/golint.vim index cc807fe6..708cf156 100644 --- a/ale_linters/go/golint.vim +++ b/ale_linters/go/golint.vim @@ -3,6 +3,7 @@ call ale#linter#Define('go', { \ 'name': 'golint', +\ 'output_stream': 'stderr', \ 'executable': 'golint', \ 'command': 'golint %t', \ 'callback': 'ale#handlers#unix#HandleAsWarning', |