summaryrefslogtreecommitdiff
path: root/ale_linters/html
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/html')
-rw-r--r--ale_linters/html/htmlhint.vim6
-rw-r--r--ale_linters/html/tidy.vim6
2 files changed, 0 insertions, 12 deletions
diff --git a/ale_linters/html/htmlhint.vim b/ale_linters/html/htmlhint.vim
index dedf606e..649c523a 100644
--- a/ale_linters/html/htmlhint.vim
+++ b/ale_linters/html/htmlhint.vim
@@ -1,12 +1,6 @@
" Author: KabbAmine <amine.kabb@gmail.com>
" Description: HTMLHint for checking html files
-if exists('g:loaded_ale_linters_html_htmlhint')
- finish
-endif
-
-let g:loaded_ale_linters_html_htmlhint = 1
-
call ale#linter#Define('html', {
\ 'name': 'htmlhint',
\ 'executable': 'htmlhint',
diff --git a/ale_linters/html/tidy.vim b/ale_linters/html/tidy.vim
index a4e12aec..53520347 100644
--- a/ale_linters/html/tidy.vim
+++ b/ale_linters/html/tidy.vim
@@ -1,12 +1,6 @@
" Author: KabbAmine <amine.kabb@gmail.com>
" Description: This file adds support for checking HTML code with tidy.
-if exists('g:loaded_ale_linters_html_tidy')
- finish
-endif
-
-let g:loaded_ale_linters_html_tidy = 1
-
" CLI options
let g:ale_html_tidy_executable = get(g:, 'ale_html_tidy_executable', 'tidy')
let g:ale_html_tidy_args = get(g:, 'ale_html_tidy_args', '-q -e -language en')