diff options
author | Daniel M. Capella <polyzen@users.noreply.github.com> | 2017-03-01 19:06:09 -0500 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-03-02 00:06:09 +0000 |
commit | 18508f74532f41aa4c66a5e217550f00d150a30d (patch) | |
tree | f13b02833feb92678ef27dec382777c74bc7e3e3 /ale_linters/xhtml | |
parent | 6befe9e37c3a7bc07aba2f66cd7587fd6360359b (diff) | |
download | ale-18508f74532f41aa4c66a5e217550f00d150a30d.zip |
proselint: Add more supported filetypes (#367)
* proselint: Add more suported filetypes
* proselint: Minor consistency fixes
* Vim help: Disable linters by default
Diffstat (limited to 'ale_linters/xhtml')
-rw-r--r-- | ale_linters/xhtml/proselint.vim | 9 |
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', +\}) |