comparison checkstyle.xml @ 9794:47eee0be5792 3.2.x

Upgrade to latest Checkstyle plugin supporting used Maven version
author Tom Gottfried <tom@intevation.de>
date Thu, 02 Nov 2023 11:20:50 +0100
parents 0a5239a1e46e
children
comparison
equal deleted inserted replaced
9793:2a78ac6c8045 9794:47eee0be5792
28 28
29 <module name="RegexpSingleline"> 29 <module name="RegexpSingleline">
30 <!-- \s matches whitespace character, $ matches end of line. --> 30 <!-- \s matches whitespace character, $ matches end of line. -->
31 <property name="format" value="\s+$"/> 31 <property name="format" value="\s+$"/>
32 <property name="message" value="Line has trailing spaces."/> 32 <property name="message" value="Line has trailing spaces."/>
33 </module>
34
35 <!-- Checks for Size Violations. -->
36 <!-- See http://checkstyle.sf.net/config_sizes.html -->
37 <module name="LineLength">
38 <property name="ignorePattern" value="^ *\$wnd.*$"/>
39 <property name="severity" value="warning"/>
33 </module> 40 </module>
34 41
35 <module name="TreeWalker"> 42 <module name="TreeWalker">
36 43
37 <!-- required for SuppressWarningsFilter (and other Suppress* rules not used here) --> 44 <!-- required for SuppressWarningsFilter (and other Suppress* rules not used here) -->
63 <!-- See http://checkstyle.sf.net/config_import.html --> 70 <!-- See http://checkstyle.sf.net/config_import.html -->
64 <module name="AvoidStarImport"/> 71 <module name="AvoidStarImport"/>
65 <module name="IllegalImport"/> <!-- defaults to sun.* packages --> 72 <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
66 <module name="RedundantImport"/> 73 <module name="RedundantImport"/>
67 <module name="UnusedImports"/> 74 <module name="UnusedImports"/>
68
69
70 <!-- Checks for Size Violations. -->
71 <!-- See http://checkstyle.sf.net/config_sizes.html -->
72 <module name="LineLength">
73 <property name="ignorePattern" value="^ *\$wnd.*$"/>
74 <property name="severity" value="warning"/>
75 </module>
76 75
77 76
78 <!-- Checks for whitespace --> 77 <!-- Checks for whitespace -->
79 <!-- See http://checkstyle.sf.net/config_whitespace.html --> 78 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
80 <!--<module name="EmptyForIteratorPad"/> 79 <!--<module name="EmptyForIteratorPad"/>

http://dive4elements.wald.intevation.org