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