add redpen as text linter

This commit is contained in:
rhysd
2017-11-17 15:35:20 +09:00
parent ca345ffb62
commit 79f15b0e30
3 changed files with 11 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
" Author: rhysd https://rhysd.github.io
" Description: Redpen, a proofreading tool (http://redpen.cc)
call ale#linter#Define('text', {
\ 'name': 'redpen',
\ 'executable': 'redpen',
\ 'command': 'redpen -f plain -r json %t',
\ 'callback': 'ale#handlers#redpen#HandleRedpenOutput',
\})