summaryrefslogtreecommitdiff
path: root/ale_linters/vim
diff options
context:
space:
mode:
authorKeith Maxwell <keith.maxwell@gmail.com>2020-05-26 08:02:12 +0100
committerKeith Maxwell <keith.maxwell@gmail.com>2020-05-30 08:38:07 +0100
commit53bfe418413746f582295a84ddf7a374ac84e154 (patch)
tree6e1a4fc2061d8769eee58ddad86e4a4483936316 /ale_linters/vim
parent7265ceb6d050d1a4642741d248f11e4f2abd37e1 (diff)
downloadale-53bfe418413746f582295a84ddf7a374ac84e154.zip
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)
Diffstat (limited to 'ale_linters/vim')
-rw-r--r--ale_linters/vim/vint.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/vim/vint.vim b/ale_linters/vim/vint.vim
index 65e19126..c7461bc8 100644
--- a/ale_linters/vim/vint.vim
+++ b/ale_linters/vim/vint.vim
@@ -5,7 +5,7 @@
call ale#Set('vim_vint_show_style_issues', 1)
call ale#Set('vim_vint_executable', 'vint')
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
let l:can_use_no_color_flag = empty(a:version)