Repository: cxf-build-utils Updated Branches: refs/heads/master 4952fb46f -> 5a462f37b
Latest version of Eclipse checkstyle plugin flags some more stuff Project: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/commit/5a462f37 Tree: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/tree/5a462f37 Diff: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/diff/5a462f37 Branch: refs/heads/master Commit: 5a462f37b968c2cfd67d76376cbe3132da5c911a Parents: 4952fb4 Author: Daniel Kulp <[email protected]> Authored: Fri Jul 28 11:45:19 2017 -0400 Committer: Daniel Kulp <[email protected]> Committed: Fri Jul 28 11:45:19 2017 -0400 ---------------------------------------------------------------------- buildtools/src/main/resources/cxf-checkstyle-corba.xml | 6 +++++- buildtools/src/main/resources/cxf-checkstyle.xml | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-build-utils/blob/5a462f37/buildtools/src/main/resources/cxf-checkstyle-corba.xml ---------------------------------------------------------------------- diff --git a/buildtools/src/main/resources/cxf-checkstyle-corba.xml b/buildtools/src/main/resources/cxf-checkstyle-corba.xml index 11ec9ce..8bc42da 100644 --- a/buildtools/src/main/resources/cxf-checkstyle-corba.xml +++ b/buildtools/src/main/resources/cxf-checkstyle-corba.xml @@ -125,7 +125,11 @@ <property name="tokens" value="ARRAY_INIT,BNOT,DEC,DOT,INC,LNOT,UNARY_MINUS,UNARY_PLUS" /> </module> - <module name="NoWhitespaceBefore" /> + <module name="NoWhitespaceBefore"> + <property name="tokens" + value="COMMA, SEMI, POST_INC, POST_DEC" /> + </module> + <module name="OperatorWrap" /> <module name="ParenPad" /> <module name="TypecastParenPad" /> http://git-wip-us.apache.org/repos/asf/cxf-build-utils/blob/5a462f37/buildtools/src/main/resources/cxf-checkstyle.xml ---------------------------------------------------------------------- diff --git a/buildtools/src/main/resources/cxf-checkstyle.xml b/buildtools/src/main/resources/cxf-checkstyle.xml index e26f41f..5aedf6b 100644 --- a/buildtools/src/main/resources/cxf-checkstyle.xml +++ b/buildtools/src/main/resources/cxf-checkstyle.xml @@ -122,7 +122,10 @@ <property name="tokens" value="ARRAY_INIT,BNOT,DEC,DOT,INC,LNOT,UNARY_MINUS,UNARY_PLUS" /> </module> - <module name="NoWhitespaceBefore" /> + <module name="NoWhitespaceBefore"> + <property name="tokens" + value="COMMA, SEMI, POST_INC, POST_DEC" /> + </module> <module name="OperatorWrap" /> <module name="ParenPad" /> <module name="TypecastParenPad" />
