diff options
Diffstat (limited to 'ale_linters/html')
-rw-r--r-- | ale_linters/html/htmlhint.vim | 2 | ||||
-rw-r--r-- | ale_linters/html/tidy.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/html/htmlhint.vim b/ale_linters/html/htmlhint.vim index 8cfe1f28..57eff0ec 100644 --- a/ale_linters/html/htmlhint.vim +++ b/ale_linters/html/htmlhint.vim @@ -40,7 +40,7 @@ function! ale_linters#html#htmlhint#Handle(buffer, lines) abort return output endfunction -call ALEAddLinter('html', { +call ale#linter#Define('html', { \ 'name': 'htmlhint', \ 'executable': 'htmlhint', \ 'command': 'htmlhint --format=unix stdin', diff --git a/ale_linters/html/tidy.vim b/ale_linters/html/tidy.vim index b5621f91..c1aab8f3 100644 --- a/ale_linters/html/tidy.vim +++ b/ale_linters/html/tidy.vim @@ -71,7 +71,7 @@ function! ale_linters#html#tidy#Handle(buffer, lines) abort return output endfunction -call ALEAddLinter('html', { +call ale#linter#Define('html', { \ 'name': 'tidy', \ 'executable': g:ale_html_tidy_executable, \ 'output_stream': 'stderr', |