Support textlint for reStructuredText (#1978)

* Support textlint for reStructuredText
* Add linter test for textlint rst
This commit is contained in:
hokorobi
2019-01-12 23:40:03 +09:00
committed by w0rp
parent 56b7dca623
commit 7f176390fc
5 changed files with 91 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
" Author: hokorobi <hokorobi.hokorobi@gmail.com>
" Description: textlint, a proofreading tool (https://textlint.github.io/)
call ale#linter#Define('rst', {
\ 'name': 'textlint',
\ 'executable_callback': 'ale#handlers#textlint#GetExecutable',
\ 'command_callback': 'ale#handlers#textlint#GetCommand',
\ 'callback': 'ale#handlers#textlint#HandleTextlintOutput',
\})