summaryrefslogtreecommitdiff
path: root/ale_linters/html/htmlhint.vim
blob: 649c523a712ca8e5fb5797bc98e18e5bcf341779 (plain)
1
2
3
4
5
6
7
8
9
" Author: KabbAmine <amine.kabb@gmail.com>
" Description: HTMLHint for checking html files

call ale#linter#Define('html', {
\   'name': 'htmlhint',
\   'executable': 'htmlhint',
\   'command': 'htmlhint --format=unix stdin',
\   'callback': 'ale#handlers#HandleUnixFormatAsError',
\})