From 7cd25181b29dd0484a11fefc03d2239564fcba06 Mon Sep 17 00:00:00 2001 From: Christoffer Aasted <402927+dezza@users.noreply.github.com> Date: Sat, 20 Jan 2018 03:20:13 +0100 Subject: [PATCH] Fix #1246 - Newer ESLint outputs to stderr I think Vader test still applies for this one. --- ale_linters/javascript/eslint.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/ale_linters/javascript/eslint.vim b/ale_linters/javascript/eslint.vim index 785b8bb..23e1694 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',