|
91 | 91 | <!-- Suppress warnings by using -->
|
92 | 92 | <module name="SuppressWarningsFilter"/>
|
93 | 93 |
|
| 94 | + <module name="SuppressionFilter"> |
| 95 | + <property name="file" value="${config_loc}/suppressions.xml" /> |
| 96 | + </module> |
| 97 | + |
94 | 98 | <module name="TreeWalker">
|
95 | 99 |
|
96 | 100 | <!-- Checks for Javadoc comments. -->
|
|
160 | 164 | <!-- See https://checkstyle.org/config_coding.html -->
|
161 | 165 | <module name="EmptyStatement"/>
|
162 | 166 | <module name="EqualsHashCode"/>
|
163 |
| - <module name="HiddenField"/> |
| 167 | + <module name="HiddenField" > |
| 168 | + <property name="ignoreSetter" value="true" /> |
| 169 | + <property name="ignoreConstructorParameter" value="true" /> |
| 170 | + </module> |
164 | 171 | <module name="IllegalInstantiation"/>
|
165 | 172 | <module name="InnerAssignment"/>
|
166 | 173 | <module name="MagicNumber"/>
|
|
178 | 185 | <module name="VisibilityModifier"/>
|
179 | 186 |
|
180 | 187 | <!-- Miscellaneous other checks. -->
|
181 |
| - <!-- See https://checkstyle.org/config_misc.html --> |
| 188 | + <!-- See https://checkstyle.org/config_misc.html --> |
182 | 189 | <module name="ArrayTypeStyle"/>
|
183 | 190 | <module name="FinalParameters"/>
|
184 | 191 | <module name="FinalLocalVariable"/>
|
185 |
| - <module name="TodoComment"/> |
| 192 | + <!-- <module name="TodoComment"/> --> |
186 | 193 | <module name="UpperEll"/>
|
187 | 194 |
|
188 | 195 | <!-- See https://checkstyle.sourceforge.io/config_annotation.html#SuppressWarningsHolder -->
|
|
0 commit comments