2018-03-31 10:55:20 -04:00
|
|
|
" Author: chew-z https://github.com/chew-z
|
|
|
|
" Description: vale for Markdown files
|
|
|
|
|
2021-05-05 04:25:00 -04:00
|
|
|
call ale#Set('markdown_vale_executable', 'vale')
|
|
|
|
call ale#Set('markdown_vale_input_file', '%t')
|
|
|
|
call ale#Set('markdown_vale_options', '')
|
|
|
|
|
|
|
|
function! ale_linters#markdown#vale#GetCommand(buffer) abort
|
|
|
|
let l:executable = ale#Var(a:buffer, 'markdown_vale_executable')
|
|
|
|
let l:input_file = ale#Var(a:buffer, 'markdown_vale_input_file')
|
|
|
|
|
|
|
|
" Defaults to `vale --output=JSON %t`
|
|
|
|
return ale#Escape(l:executable)
|
|
|
|
\ . ' --output=JSON '
|
|
|
|
\ . ale#Var(a:buffer, 'markdown_vale_options')
|
|
|
|
\ . ' ' . l:input_file
|
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
call ale#linter#Define('markdown', {
|
|
|
|
\ 'name': 'vale',
|
2021-05-05 04:25:00 -04:00
|
|
|
\ 'executable': {b -> ale#Var(b, 'markdown_vale_executable')},
|
|
|
|
\ 'command': function('ale_linters#markdown#vale#GetCommand'),
|
2018-03-31 10:55:20 -04:00
|
|
|
\ 'callback': 'ale#handlers#vale#Handle',
|
|
|
|
\})
|