Mercurial > vim
annotate runtime/compiler/checkstyle.vim @ 29928:0c52f8114e16 v9.0.0302
patch 9.0.0302: CI for Coverity is bothered by deprecation warnings
Commit: https://github.com/vim/vim/commit/75e9a6693e8d0126b5fff42203bfba9428cd19ae
Author: Philip H <47042125+pheiduck@users.noreply.github.com>
Date: Sun Aug 28 17:59:05 2022 +0100
patch 9.0.0302: CI for Coverity is bothered by deprecation warnings
Problem: CI for Coverity is bothered by deprecation warnings.
Solution: Ignore deprecation warnings. (closes https://github.com/vim/vim/issues/11002)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 28 Aug 2022 19:00:10 +0200 |
parents | 0db0640e16e0 |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
2 " Compiler: Checkstyle | |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> |
21825 | 4 " Last Change: 2020 Aug 2 |
7 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "checkstyle" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
21825 | 15 let s:cpo_save = &cpo |
16 set cpo&vim | |
17 | |
18 " CompilerSet makeprg=java\ com.puppycrawl.tools.checkstyle.Main\ -f\ plain\ -c\ /sun_checks.xml | |
19 " CompilerSet makeprg=java\ -jar\ checkstyle-X.XX-all.jar\ -f\ plain\ -c\ /sun_checks.xml | |
7 | 20 |
21825 | 21 CompilerSet makeprg=checkstyle\ -f\ plain |
22 CompilerSet errorformat=[%tRROR]\ %f:%l:%v:\ %m, | |
23 \[%tARN]\ %f:%l:%v:\ %m, | |
24 \[%tRROR]\ %f:%l:\ %m, | |
25 \[%tARN]\ %f:%l:\ %m, | |
26 \%-G%.%# | |
27 | |
28 let &cpo = s:cpo_save | |
29 unlet s:cpo_save |