mirror of
https://github.com/dense-analysis/ale
synced 2024-12-13 09:57:20 +00:00
10 lines
335 B
VimL
10 lines
335 B
VimL
" Author: TANIGUCHI Masaya <ta2gch@gmail.com>
|
|
" Description: textlint for LaTeX files
|
|
|
|
call ale#linter#Define('tex', {
|
|
\ 'name': 'textlint',
|
|
\ 'executable_callback': 'ale#handlers#textlint#GetExecutable',
|
|
\ 'command_callback': 'ale#handlers#textlint#GetCommand',
|
|
\ 'callback': 'ale#handlers#textlint#HandleTextlintOutput',
|
|
\})
|