mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:30:05 +08:00
10 lines
263 B
VimL
Vendored
10 lines
263 B
VimL
Vendored
" 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',
|
|
\})
|