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