OSDN Git Service

reducing checkstyle warnings.
[mikutoga/TogaGem.git] / config / checkstyle / checkstyle-suppressions.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <!DOCTYPE suppressions PUBLIC
4     "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
5     "https://checkstyle.org/dtds/suppressions_1_2.dtd">
6
7 <!--
8     Checkstyle suppressions
9     for Checkstyle 8.20 or later
10
11     [ https://checkstyle.org/ ]
12
13     Copyright(c) 2019 olyutorskii
14 -->
15
16
17 <suppressions>
18
19     <!-- Annotations -->
20     <suppress files="" checks="AnnotationOnSameLine" />
21
22     <!-- Class Design -->
23     <suppress files="" checks="DesignForExtension" />
24
25     <!-- Coding -->
26     <suppress files="" checks="ExplicitInitialization" />
27     <suppress files="" checks="FinalLocalVariable" />
28     <suppress files="" checks="MagicNumber" />
29
30     <!-- Imports -->
31     <suppress files="" checks="ImportControl" />
32
33     <!-- Javadoc Comments -->
34     <suppress files="" checks="JavadocParagraph" />
35     <suppress files="" checks="JavadocTagContinuationIndentation" />
36     <suppress files="" checks="SummaryJavadocCheck" />
37
38     <!-- Miscellaneous -->
39     <suppress files="" checks="FinalParameters" />
40     <suppress files="" checks="TrailingComment" />
41
42     <!-- Modifier -->
43     <suppress files="" checks="InterfaceMemberImpliedModifier" />
44
45     <!-- Whitespace -->
46     <suppress files="" checks="SingleSpaceSeparator" />
47
48 </suppressions>
49
50
51 <!-- EOF -->