diff options
author | w0rp <devw0rp@gmail.com> | 2018-01-02 13:23:00 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-01-02 13:23:00 +0000 |
commit | d9a3722e060a52d92e5a95fa3a10c1b51ef6b5b4 (patch) | |
tree | 8f4e3e5898e5a0ac57ab5fbde979854012696409 /ale_linters | |
parent | c165c7c5d11eb827a3be6bab691f20eeb6f6e487 (diff) | |
parent | 1e34210f9a231da26074e6af6643e57ae7f1f402 (diff) | |
download | ale-d9a3722e060a52d92e5a95fa3a10c1b51ef6b5b4.zip |
Merge branch 'add-fountain-proselint-support'
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/fountain/proselint.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ale_linters/fountain/proselint.vim b/ale_linters/fountain/proselint.vim new file mode 100644 index 00000000..353a2e5f --- /dev/null +++ b/ale_linters/fountain/proselint.vim @@ -0,0 +1,9 @@ +" Author: Jansen Mitchell https://github.com/JansenMitchell +" Description: proselint for Fountain files + +call ale#linter#Define('fountain', { +\ 'name': 'proselint', +\ 'executable': 'proselint', +\ 'command': 'proselint %t', +\ 'callback': 'ale#handlers#unix#HandleAsWarning', +\}) |