From 9a4645fc7ffa3c3cabccd7c2a432e44276214455 Mon Sep 17 00:00:00 2001 From: deathmaz <00maz1987@gmail.com> Date: Fri, 28 Oct 2016 09:46:17 +0300 Subject: Default stdin in htmlhint options --- ale_linters/html/htmlhint.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ale_linters/html') diff --git a/ale_linters/html/htmlhint.vim b/ale_linters/html/htmlhint.vim index 0892a5ae..59c2ed20 100644 --- a/ale_linters/html/htmlhint.vim +++ b/ale_linters/html/htmlhint.vim @@ -2,11 +2,11 @@ " Description: HTMLHint for checking html files " CLI options -let g:ale_html_htmlhint_options = get(g:, 'ale_html_htmlhint_options', '--format=unix stdin') +let g:ale_html_htmlhint_options = get(g:, 'ale_html_htmlhint_options', '--format=unix') call ale#linter#Define('html', { \ 'name': 'htmlhint', \ 'executable': 'htmlhint', -\ 'command': 'htmlhint ' . g:ale_html_htmlhint_options, +\ 'command': 'htmlhint ' . g:ale_html_htmlhint_options . ' stdin', \ 'callback': 'ale#handlers#HandleUnixFormatAsError', \}) -- cgit v1.2.3