ale/ale_linters/vim/vint.vim

18 lines
562 B
VimL
Raw Normal View History

" Author: w0rp <devw0rp@gmail.com>, KabbAmine <amine.kabb@gmail.com>
" Description: This file adds support for checking Vim code with Vint.
if exists('g:loaded_ale_linters_vim_vint')
finish
endif
let g:loaded_ale_linters_vim_vint = 1
2016-10-03 18:53:07 +00:00
let s:format = '-f "{file_path}:{line_number}:{column_number}: {severity}: {description} (see {reference})'
call ale#linter#Define('vim', {
\ 'name': 'vint',
\ 'executable': 'vint',
2016-10-03 18:53:07 +00:00
\ 'command': g:ale#util#stdin_wrapper . ' .vim vint -w --no-color ' . s:format,
\ 'callback': 'ale#handlers#HandleGCCFormat',
\})