-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckstyle-suppressions.xml
30 lines (29 loc) · 1.45 KB
/
checkstyle-suppressions.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.0//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
<!--
https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/sun_checks.xml
https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/suppressions-filter.html
-->
<suppressions>
<suppress checks="Javadoc" files="."/>
<suppress checks="CustomImportOrder" files="."/>
<suppress checks="CommentsIndentation" files="."/>
<suppress checks="Indentation" files="."/>
<suppress checks="LineLength" files="."/>
<suppress checks="NewlineAtEndOfFile" files="."/>
<suppress checks="HiddenField" files="Event"/>
<suppress checks="HideUtilityClassConstructor" files="EventsApplication"/>
<suppress checks="DesignForExtension" files="SwaggerConfig"/>
<suppress checks="DesignForExtension" files="CustomMessageSourceConfiguration"/>
<suppress checks="AvoidStarImport" files="."/>
<suppress checks="DesignForExtension" files="RequestLoggingFilterConfig"/>
<suppress checks="MagicNumber" files="Event"/>
<suppress checks="MagicNumber" files="EventDTO"/>
<suppress checks="RegexpSingleline" files="."/>
<!--<suppress checks="MagicNumberCheck"-->
<!--files="LegacyDatasetConvertor.java"-->
<!--lines="221,250-295"/>-->
</suppressions>