From 32e6fc5975aacd83ae15958b52311b08a094883a Mon Sep 17 00:00:00 2001 From: Nicolas Blanchot Date: Sun, 14 Jan 2024 12:43:31 +0100 Subject: Stylelint linter output stream can go to stderr (#4702) Since [version 13.6.0](https://github.com/stylelint/stylelint/blob/804bb24c75248aba55b009994e4bfb561593a990/CHANGELOG.md?plain=1#L654), following [PR 4799](https://github.com/stylelint/stylelint/pull/4799) `stylelint` errors are sent to `stderr`. Previous versions where sending errors to `stdout`. --- ale_linters/html/stylelint.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'ale_linters/html') diff --git a/ale_linters/html/stylelint.vim b/ale_linters/html/stylelint.vim index 6b7aba40..c191c468 100644 --- a/ale_linters/html/stylelint.vim +++ b/ale_linters/html/stylelint.vim @@ -21,6 +21,7 @@ endfunction call ale#linter#Define('html', { \ 'name': 'stylelint', +\ 'output_stream': 'both', \ 'executable': function('ale_linters#html#stylelint#GetExecutable'), \ 'command': function('ale_linters#html#stylelint#GetCommand'), \ 'callback': 'ale#handlers#css#HandleStyleLintFormat', -- cgit v1.2.3