summaryrefslogtreecommitdiff
path: root/ale_linters/html/htmlhint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/html/htmlhint.vim')
-rw-r--r--ale_linters/html/htmlhint.vim18
1 files changed, 7 insertions, 11 deletions
diff --git a/ale_linters/html/htmlhint.vim b/ale_linters/html/htmlhint.vim
index c4afceea..2d65dddc 100644
--- a/ale_linters/html/htmlhint.vim
+++ b/ale_linters/html/htmlhint.vim
@@ -2,29 +2,25 @@
" Description: HTMLHint for checking html files
" CLI options
-let g:ale_html_htmlhint_options = get(g:, 'ale_html_htmlhint_options', '--format=unix')
-
-let g:ale_html_htmlhint_executable =
-\ get(g:, 'ale_html_htmlhint_executable', 'htmlhint')
-
-let g:ale_html_htmlhint_use_global =
-\ get(g:, 'ale_html_htmlhint_use_global', 0)
+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 g:ale_html_htmlhint_use_global
- return g:ale_html_htmlhint_executable
+ 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',
- \ g:ale_html_htmlhint_executable
+ \ ale#Var(a:buffer, 'html_htmlhint_executable')
\)
endfunction
function! ale_linters#html#htmlhint#GetCommand(buffer) abort
return ale_linters#html#htmlhint#GetExecutable(a:buffer)
- \ . ' ' . g:ale_html_htmlhint_options
+ \ . ' ' . ale#Var(a:buffer, 'html_htmlhint_options')
\ . ' %t'
endfunction