summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorChristopher Swingley <cswingle@gmail.com>2017-10-24 13:34:38 -0800
committerw0rp <w0rp@users.noreply.github.com>2017-10-24 22:34:38 +0100
commit1c56bebd7ca44d43badc9a63dd7dc4d88fd1b8b9 (patch)
tree60c73e51697bc2a84c463e1e8d514ffcca931c67 /ale_linters
parentfe729dab583d69853c20d373a0eb217a971f14a0 (diff)
downloadale-1c56bebd7ca44d43badc9a63dd7dc4d88fd1b8b9.zip
proselint for mail files (#1037)
Add proselint for mail files
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/mail/proselint.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/ale_linters/mail/proselint.vim b/ale_linters/mail/proselint.vim
new file mode 100644
index 00000000..82c8d1f8
--- /dev/null
+++ b/ale_linters/mail/proselint.vim
@@ -0,0 +1,9 @@
+" Author: Daniel M. Capella https://github.com/polyzen
+" Description: proselint for mail files
+
+call ale#linter#Define('mail', {
+\ 'name': 'proselint',
+\ 'executable': 'proselint',
+\ 'command': 'proselint %t',
+\ 'callback': 'ale#handlers#unix#HandleAsWarning',
+\})