10 lines
261 B
VimL
10 lines
261 B
VimL
|
" Author: poohzrn https://github.com/poohzrn
|
||
|
" Description: proselint for TeX files
|
||
|
|
||
|
call ale#linter#Define('tex', {
|
||
|
\ 'name': 'proselint',
|
||
|
\ 'executable': 'proselint',
|
||
|
\ 'command': 'proselint %t',
|
||
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
||
|
\})
|