ale/ale_linters/html/htmlhint.vim

10 lines
286 B
VimL
Raw Normal View History

2016-10-08 18:01:03 +03:00
" Author: KabbAmine <amine.kabb@gmail.com>
" Description: HTMLHint for checking html files
call ale#linter#Define('html', {
2016-10-08 18:01:03 +03:00
\ 'name': 'htmlhint',
\ 'executable': 'htmlhint',
\ 'command': 'htmlhint --format=unix stdin',
2016-10-11 09:22:47 -05:00
\ 'callback': 'ale#handlers#HandleUnixFormatAsError',
2016-10-08 18:01:03 +03:00
\})