diff options
Diffstat (limited to 'ale_linters/vim/vint.vim')
-rw-r--r-- | ale_linters/vim/vint.vim | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ale_linters/vim/vint.vim b/ale_linters/vim/vint.vim index e2c156f7..c23574ac 100644 --- a/ale_linters/vim/vint.vim +++ b/ale_linters/vim/vint.vim @@ -7,11 +7,20 @@ endif let g:loaded_ale_linters_vim_vint = 1 +" This flag can be used to change enable/disable style issues. +let g:ale_vim_vint_show_style_issues = +\ get(g:, 'ale_vim_vint_show_style_issues', 1) + +let s:warning_flag = g:ale_vim_vint_show_style_issues ? '-s' : '-w' let s:format = '-f "{file_path}:{line_number}:{column_number}: {severity}: {description} (see {reference})"' call ale#linter#Define('vim', { \ 'name': 'vint', \ 'executable': 'vint', -\ 'command': g:ale#util#stdin_wrapper . ' .vim vint -w --no-color ' . s:format, +\ 'command': g:ale#util#stdin_wrapper +\ . ' .vim vint ' +\ . s:warning_flag +\ . ' --no-color ' +\ . s:format, \ 'callback': 'ale#handlers#HandleGCCFormat', \}) |