summaryrefslogtreecommitdiff
path: root/ale_linters/html/htmlhint.vim
blob: 2d65dddc030a3afd58560dca7d1ed8cb8479c6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
" Author: KabbAmine <amine.kabb@gmail.com>, deathmaz <00maz1987@gmail.com>, diartyz <diartyz@gmail.com>
" Description: HTMLHint for checking html files

" CLI options
let g:html_htmlhint_options = get(g:, 'ale_html_htmlhint_options', '--format=unix')
let g:html_htmlhint_executable = get(g:, 'ale_html_htmlhint_executable', 'htmlhint')
let g:html_htmlhint_use_global = get(g:, 'ale_html_htmlhint_use_global', 0)

function! ale_linters#html#htmlhint#GetExecutable(buffer) abort
    if ale#Var(a:buffer, 'html_htmlhint_use_global')
        return ale#Var(a:buffer, 'html_htmlhint_executable')
    endif

    return ale#util#ResolveLocalPath(
    \   a:buffer,
    \   'node_modules/.bin/htmlhint',
    \   ale#Var(a:buffer, 'html_htmlhint_executable')
    \)
endfunction

function! ale_linters#html#htmlhint#GetCommand(buffer) abort
    return ale_linters#html#htmlhint#GetExecutable(a:buffer)
    \   . ' ' . ale#Var(a:buffer, 'html_htmlhint_options')
    \   . ' %t'
endfunction

call ale#linter#Define('html', {
\   'name': 'htmlhint',
\   'executable_callback': 'ale_linters#html#htmlhint#GetExecutable',
\   'command_callback': 'ale_linters#html#htmlhint#GetCommand',
\   'callback': 'ale#handlers#HandleUnixFormatAsError',
\})