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