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