mirror of
https://github.com/dense-analysis/ale
synced 2025-03-03 11:50:26 +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',
|
||
|
\})
|