vim/vint: show policy name

So that I can find the relevant information in the vint
linting policy summary and policies can be easily configured
https://github.com/Vimjas/vint/wiki/Vint-linting-policy-summary

Before this change an example warning message appears as:

    autocmd should execute in an augroup or execute with a group (see :help :autocmd)

After this change the same example appears as:

    ProhibitAutocmdWithNoGroup - autocmd should execute in an augroup or execute with a group (see :help :autocmd)
This commit is contained in:
Keith Maxwell 2020-05-26 08:02:12 +01:00
parent 7265ceb6d0
commit 53bfe41841
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
call ale#Set('vim_vint_show_style_issues', 1) call ale#Set('vim_vint_show_style_issues', 1)
call ale#Set('vim_vint_executable', 'vint') call ale#Set('vim_vint_executable', 'vint')
let s:enable_neovim = has('nvim') ? ' --enable-neovim' : '' let s:enable_neovim = has('nvim') ? ' --enable-neovim' : ''
let s:format = '-f "{file_path}:{line_number}:{column_number}: {severity}: {description} (see {reference})"' let s:format = '-f "{file_path}:{line_number}:{column_number}: {severity}: {policy_name} - {description} (see {reference})"'
function! ale_linters#vim#vint#GetCommand(buffer, version) abort function! ale_linters#vim#vint#GetCommand(buffer, version) abort
let l:can_use_no_color_flag = empty(a:version) let l:can_use_no_color_flag = empty(a:version)

View File

@ -1,7 +1,7 @@
Before: Before:
call ale#assert#SetUpLinterTest('vim', 'vint') call ale#assert#SetUpLinterTest('vim', 'vint')
let b:command_tail = (has('nvim') ? ' --enable-neovim' : '') let b:command_tail = (has('nvim') ? ' --enable-neovim' : '')
\ . ' -f "{file_path}:{line_number}:{column_number}: {severity}: {description} (see {reference})" %t' \ . ' -f "{file_path}:{line_number}:{column_number}: {severity}: {policy_name} - {description} (see {reference})" %t'
After: After:
unlet! b:bin_dir unlet! b:bin_dir