7c643a2d9c
Read more here: https://github.com/w0rp/ale
9 lines
263 B
VimL
9 lines
263 B
VimL
" Author: poohzrn https://github.com/poohzrn
|
|
" Description: proselint for text files
|
|
|
|
call ale#linter#Define('text', {
|
|
\ 'name': 'proselint',
|
|
\ 'executable': 'proselint',
|
|
\ 'command': 'proselint %t',
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
|
\})
|