blob: d175c88c2fadff4c1b2094b13c8c1f508f1285ee (
plain)
1
2
3
4
5
6
7
8
9
|
" Author: poohzrn https://github.com/poohzrn
" Description: proselint for tex files
call ale#linter#Define('tex', {
\ 'name': 'proselint',
\ 'executable': 'proselint',
\ 'command': g:ale#util#stdin_wrapper . ' .tex proselint',
\ 'callback': 'ale#handlers#HandleUnixFormatAsWarning',
\})
|