diff options
author | Christoffer Aasted <402927+dezza@users.noreply.github.com> | 2018-01-20 03:20:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-20 03:20:13 +0100 |
commit | 7cd25181b29dd0484a11fefc03d2239564fcba06 (patch) | |
tree | efafe015790e46c52cddb4e20bfdf4cd769053f3 /ale_linters/javascript | |
parent | 1d3b542031431d797c8d6a46569b885f8f2ae185 (diff) | |
download | ale-7cd25181b29dd0484a11fefc03d2239564fcba06.zip |
Fix #1246 - Newer ESLint outputs to stderr
I think Vader test still applies for this one.
Diffstat (limited to 'ale_linters/javascript')
-rw-r--r-- | ale_linters/javascript/eslint.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ale_linters/javascript/eslint.vim b/ale_linters/javascript/eslint.vim index 785b8bb6..23e16949 100644 --- a/ale_linters/javascript/eslint.vim +++ b/ale_linters/javascript/eslint.vim @@ -3,6 +3,7 @@ call ale#linter#Define('javascript', { \ 'name': 'eslint', +\ 'output_stream': 'both', \ 'executable_callback': 'ale#handlers#eslint#GetExecutable', \ 'command_callback': 'ale#handlers#eslint#GetCommand', \ 'callback': 'ale#handlers#eslint#Handle', |