summaryrefslogtreecommitdiff
path: root/ale_linters/html/htmlhint.vim
blob: 59c2ed20119ed086e4e75428d76b81052aa540dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
" Author: KabbAmine <amine.kabb@gmail.com>, deathmaz <00maz1987@gmail.com>
" Description: HTMLHint for checking html files

" CLI options
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 . ' stdin',
\   'callback': 'ale#handlers#HandleUnixFormatAsError',
\})