summaryrefslogtreecommitdiff
path: root/ale_linters/xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/xhtml')
-rw-r--r--ale_linters/xhtml/proselint.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/ale_linters/xhtml/proselint.vim b/ale_linters/xhtml/proselint.vim
new file mode 100644
index 00000000..07f7a291
--- /dev/null
+++ b/ale_linters/xhtml/proselint.vim
@@ -0,0 +1,9 @@
+" Author: Daniel M. Capella https://github.com/polyzen
+" Description: proselint for XHTML files
+
+call ale#linter#Define('xhtml', {
+\ 'name': 'proselint',
+\ 'executable': 'proselint',
+\ 'command': 'proselint %t',
+\ 'callback': 'ale#handlers#HandleUnixFormatAsWarning',
+\})