1
0
Fork 0
mirror of synced 2024-05-31 14:31:10 -04:00
ultimate-vim/sources_non_forked/ale/ale_linters/openapi/yamllint.vim
2021-05-05 10:25:00 +02:00

10 lines
334 B
VimL

call ale#Set('yaml_yamllint_executable', 'yamllint')
call ale#Set('yaml_yamllint_options', '')
call ale#linter#Define('openapi', {
\ 'name': 'yamllint',
\ 'executable': {b -> ale#Var(b, 'yaml_yamllint_executable')},
\ 'command': function('ale#handlers#yamllint#GetCommand'),
\ 'callback': 'ale#handlers#yamllint#Handle',
\})