10 lines
375 B
VimL
10 lines
375 B
VimL
|
" Author: hokorobi <hokorobi.hokorobi@gmail.com>
|
||
|
" Description: textlint, a proofreading tool (https://textlint.github.io/)
|
||
|
|
||
|
call ale#linter#Define('rst', {
|
||
|
\ 'name': 'textlint',
|
||
|
\ 'executable': function('ale#handlers#textlint#GetExecutable'),
|
||
|
\ 'command': function('ale#handlers#textlint#GetCommand'),
|
||
|
\ 'callback': 'ale#handlers#textlint#HandleTextlintOutput',
|
||
|
\})
|