HHH-13685 Move Suppression*CommentFilter to its new place in checkstyle config
See https://stackoverflow.com/a/55266521/6692043
This commit is contained in:
parent
9722cf0fd6
commit
b301162660
|
@ -147,6 +147,24 @@
|
||||||
<property name="severity" value="warning" />
|
<property name="severity" value="warning" />
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Source code comment-based suppressions
|
||||||
|
-->
|
||||||
|
<module name="SuppressionCommentFilter">
|
||||||
|
<!--
|
||||||
|
Allow a finalize() method within these comments. DriverManagerConnectionProviderImpl e.g.
|
||||||
|
uses a finalizer to make sure we release all of its cached connections.
|
||||||
|
-->
|
||||||
|
<property name="offCommentFormat" value="CHECKSTYLE:START_ALLOW_FINALIZER"/>
|
||||||
|
<property name="onCommentFormat" value="CHECKSTYLE:END_ALLOW_FINALIZER"/>
|
||||||
|
<property name="checkFormat" value="NoFinalizer"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="SuppressWithNearbyCommentFilter">
|
||||||
|
<property name="commentFormat" value="noinspection StatementWithEmptyBody"/>
|
||||||
|
<property name="checkFormat" value="EmptyStatement"/>
|
||||||
|
<property name="influenceFormat" value="1"/>
|
||||||
|
</module>
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
<module name="JavadocPackage">
|
<module name="JavadocPackage">
|
||||||
|
@ -165,23 +183,4 @@
|
||||||
</module>
|
</module>
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Source code comment-based suppressions
|
|
||||||
-->
|
|
||||||
<module name="SuppressionCommentFilter">
|
|
||||||
<!--
|
|
||||||
Allow a finalize() method within these comments. DriverManagerConnectionProviderImpl e.g.
|
|
||||||
uses a finalizer to make sure we release all of its cached connections.
|
|
||||||
-->
|
|
||||||
<property name="offCommentFormat" value="CHECKSTYLE:START_ALLOW_FINALIZER"/>
|
|
||||||
<property name="onCommentFormat" value="CHECKSTYLE:END_ALLOW_FINALIZER"/>
|
|
||||||
<property name="checkFormat" value="NoFinalizer"/>
|
|
||||||
</module>
|
|
||||||
|
|
||||||
<module name="SuppressWithNearbyCommentFilter">
|
|
||||||
<property name="commentFormat" value="noinspection StatementWithEmptyBody"/>
|
|
||||||
<property name="checkFormat" value="EmptyStatement"/>
|
|
||||||
<property name="influenceFormat" value="1"/>
|
|
||||||
</module>
|
|
||||||
</module>
|
</module>
|
||||||
|
|
|
@ -61,6 +61,24 @@
|
||||||
<property name="illegalPkgs" value="java.awt, sun, org.slf4j"/>
|
<property name="illegalPkgs" value="java.awt, sun, org.slf4j"/>
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Source code comment-based suppressions
|
||||||
|
-->
|
||||||
|
<module name="SuppressionCommentFilter">
|
||||||
|
<!--
|
||||||
|
Allow a finalize() method within these comments. DriverManagerConnectionProviderImpl e.g.
|
||||||
|
uses a finalizer to make sure we release all of its cached connections.
|
||||||
|
-->
|
||||||
|
<property name="offCommentFormat" value="CHECKSTYLE:START_ALLOW_FINALIZER"/>
|
||||||
|
<property name="onCommentFormat" value="CHECKSTYLE:END_ALLOW_FINALIZER"/>
|
||||||
|
<property name="checkFormat" value="NoFinalizer"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="SuppressWithNearbyCommentFilter">
|
||||||
|
<property name="commentFormat" value="noinspection StatementWithEmptyBody"/>
|
||||||
|
<property name="checkFormat" value="EmptyStatement"/>
|
||||||
|
<property name="influenceFormat" value="1"/>
|
||||||
|
</module>
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
<!-- We are not using NewLineAtEndOfFile because the new line chars change
|
<!-- We are not using NewLineAtEndOfFile because the new line chars change
|
||||||
|
@ -77,23 +95,4 @@
|
||||||
<property name="message" value="Files should end with no more than 5 (empty) new lines" />
|
<property name="message" value="Files should end with no more than 5 (empty) new lines" />
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Source code comment-based suppressions
|
|
||||||
-->
|
|
||||||
<module name="SuppressionCommentFilter">
|
|
||||||
<!--
|
|
||||||
Allow a finalize() method within these comments. DriverManagerConnectionProviderImpl e.g.
|
|
||||||
uses a finalizer to make sure we release all of its cached connections.
|
|
||||||
-->
|
|
||||||
<property name="offCommentFormat" value="CHECKSTYLE:START_ALLOW_FINALIZER"/>
|
|
||||||
<property name="onCommentFormat" value="CHECKSTYLE:END_ALLOW_FINALIZER"/>
|
|
||||||
<property name="checkFormat" value="NoFinalizer"/>
|
|
||||||
</module>
|
|
||||||
|
|
||||||
<module name="SuppressWithNearbyCommentFilter">
|
|
||||||
<property name="commentFormat" value="noinspection StatementWithEmptyBody"/>
|
|
||||||
<property name="checkFormat" value="EmptyStatement"/>
|
|
||||||
<property name="influenceFormat" value="1"/>
|
|
||||||
</module>
|
|
||||||
</module>
|
</module>
|
||||||
|
|
Loading…
Reference in New Issue