mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
10 lines
281 B
VimL
Vendored
10 lines
281 B
VimL
Vendored
" Author: Daniel M. Capella https://github.com/polyzen
|
|
" Description: proselint for AsciiDoc files
|
|
|
|
call ale#linter#Define('asciidoc', {
|
|
\ 'name': 'proselint',
|
|
\ 'executable': 'proselint',
|
|
\ 'command': 'proselint %t',
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
|
\})
|