diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-08-17 19:21:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-17 19:21:42 +0100 |
commit | ee62cc6898e88a292fc790b049e2ee5454d7b957 (patch) | |
tree | 3863c029074f2663b6f063b2440b4ed190cbe329 /ale_linters/python/mypy.vim | |
parent | 219fb5873c1012f3f0f9d177a885c1470c7039e6 (diff) | |
parent | 266fa1c0a4e9668587adab00f705bb14d92a5425 (diff) | |
download | ale-ee62cc6898e88a292fc790b049e2ee5454d7b957.zip |
Merge pull request #2706 from richyfish/2703_mypy_stderr
mypy linter capture stderr for error reporting in ALEInfo
Diffstat (limited to 'ale_linters/python/mypy.vim')
-rw-r--r-- | ale_linters/python/mypy.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ale_linters/python/mypy.vim b/ale_linters/python/mypy.vim index c4c6507f..dc4044e6 100644 --- a/ale_linters/python/mypy.vim +++ b/ale_linters/python/mypy.vim @@ -78,4 +78,5 @@ call ale#linter#Define('python', { \ 'executable': function('ale_linters#python#mypy#GetExecutable'), \ 'command': function('ale_linters#python#mypy#GetCommand'), \ 'callback': 'ale_linters#python#mypy#Handle', +\ 'output_stream': 'both' \}) |