mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-26 04:46:53 +08:00
12 lines
392 B
VimL
12 lines
392 B
VimL
" Author: Daniel M. Capella https://github.com/polyzen
|
|
" Description: proselint for XHTML files
|
|
|
|
call ale#Set('proselint_executable', 'proselint')
|
|
|
|
call ale#linter#Define('xhtml', {
|
|
\ 'name': 'proselint',
|
|
\ 'executable': function('ale#proselint#GetExecutable'),
|
|
\ 'command': function('ale#proselint#GetCommandWithVersionCheck'),
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
|
\})
|