mirror of https://github.com/dense-analysis/ale
10 lines
343 B
VimL
10 lines
343 B
VimL
" Author: TANIGUCHI Masaya <ta2gch@gmail.com>
|
|
" Description: textlint for AsciiDoc files
|
|
|
|
call ale#linter#Define('asciidoc', {
|
|
\ 'name': 'textlint',
|
|
\ 'executable_callback': 'ale#handlers#textlint#GetExecutable',
|
|
\ 'command_callback': 'ale#handlers#textlint#GetCommand',
|
|
\ 'callback': 'ale#handlers#textlint#HandleTextlintOutput',
|
|
\})
|