mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:20:06 +08:00
10 lines
271 B
VimL
Vendored
10 lines
271 B
VimL
Vendored
" Author: poohzrn https://github.com/poohzrn
|
|
" Description: proselint for Markdown files
|
|
|
|
call ale#linter#Define('markdown', {
|
|
\ 'name': 'proselint',
|
|
\ 'executable': 'proselint',
|
|
\ 'command': 'proselint %t',
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
|
\})
|