2018-08-30 00:51:11 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE suppressions PUBLIC
|
2019-02-28 18:56:44 +00:00
|
|
|
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
|
|
|
|
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
|
2018-08-30 00:51:11 +00:00
|
|
|
|
|
|
|
<!-- IMPORTANT ECLIPSE NOTE: If you change this file, you must restart Eclipse
|
|
|
|
for your changes to take effect in its Checkstyle integration. -->
|
|
|
|
<suppressions>
|
|
|
|
<!-- Suppress test classes -->
|
|
|
|
<suppress files="[/\\]src[/\\].*[Tt]est[/\\](java|groovy)[/\\]" checks="Javadoc*" />
|
|
|
|
<suppress files="[/\\]src[/\\].*[Tt]est[/\\](java|groovy)[/\\]" checks="VariableDeclarationUsageDistance" />
|
|
|
|
<suppress files="[/\\]src[/\\].*[Tt]est[/\\](java|groovy)[/\\]" checks="VisibilityModifier" />
|
|
|
|
<suppress files="[/\\]src[/\\].*[Tt]est[/\\](java|groovy)[/\\]" checks="AvoidStaticImport" />
|
2018-11-26 17:14:50 +00:00
|
|
|
<suppress files="[/\\]src[/\\].*[Tt]est[/\\](java|groovy)[/\\]" id="BanSystemOut" />
|
|
|
|
<suppress files="[/\\]src[/\\].*[Tt]est[/\\](java|groovy)[/\\]" id="BanSystemErr" />
|
2018-08-30 00:51:11 +00:00
|
|
|
|
2018-11-29 02:41:35 +00:00
|
|
|
<!-- Suppress test resources -->
|
|
|
|
<suppress files="[/\\]src[/\\]test[/\\]resources.*" checks="." />
|
|
|
|
|
2018-08-30 00:51:11 +00:00
|
|
|
<!-- JavadocStyle enforces existence of package-info.java package-level Javadoc; we consider this a bug. -->
|
|
|
|
<suppress files="package-info.java" checks="JavadocStyle" />
|
|
|
|
|
|
|
|
<!-- non-code classes -->
|
|
|
|
<suppress files="\.(bdr|eot|gif|gzip|jar|json|otf|png|svg|ttf|woff|zip)$" checks="FileTabCharacter" />
|
|
|
|
<suppress files="\.(bdr|eot|gif|gzip|jar|json|otf|png|svg|ttf|woff|zip)$" checks="NewlineAtEndOfFile" />
|
|
|
|
|
|
|
|
<!-- Generated code should not be subjected to checkstyle. -->
|
|
|
|
<suppress files="[/\\].*[/\\]generated.*[/\\]" checks="." />
|
|
|
|
</suppressions>
|