mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-27 05:12:16 +08:00
12 lines
403 B
VimL
12 lines
403 B
VimL
" Author: Jansen Mitchell https://github.com/JansenMitchell
|
|
" Description: proselint for Fountain files
|
|
|
|
call ale#Set('proselint_executable', 'proselint')
|
|
|
|
call ale#linter#Define('fountain', {
|
|
\ 'name': 'proselint',
|
|
\ 'executable': function('ale#proselint#GetExecutable'),
|
|
\ 'command': function('ale#proselint#GetCommandWithVersionCheck'),
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
|
\})
|