OSDN Git Service

Merge release/v2.102.2
[mikutoga/Vmd2XML.git] / config / checkstyle / checkstyle-suppressions.xml
diff --git a/config/checkstyle/checkstyle-suppressions.xml b/config/checkstyle/checkstyle-suppressions.xml
new file mode 100644 (file)
index 0000000..9b0570a
--- /dev/null
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<!DOCTYPE suppressions PUBLIC
+    "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
+    "https://checkstyle.org/dtds/suppressions_1_2.dtd">
+
+<!--
+    Checkstyle suppressions
+    for Checkstyle 8.20 or later
+
+    [ https://checkstyle.org/ ]
+
+    Copyright(c) 2019 olyutorskii
+-->
+
+
+<suppressions>
+
+    <!-- Annotations -->
+    <suppress files="" checks="AnnotationOnSameLine" />
+
+    <!-- Class Design -->
+    <suppress files="" checks="DesignForExtension" />
+
+    <!-- Coding -->
+    <suppress files="" checks="ExplicitInitialization" />
+    <suppress files="" checks="FinalLocalVariable" />
+    <suppress files="" checks="MagicNumber" />
+
+    <!-- Imports -->
+    <suppress files="" checks="ImportControl" />
+
+    <!-- Javadoc Comments -->
+    <suppress files="" checks="JavadocParagraph" />
+    <suppress files="" checks="JavadocTagContinuationIndentation" />
+    <suppress files="" checks="SummaryJavadocCheck" />
+
+    <!-- Miscellaneous -->
+    <suppress files="" checks="FinalParameters" />
+    <suppress files="" checks="TrailingComment" />
+
+    <!-- Modifier -->
+    <suppress files="" checks="InterfaceMemberImpliedModifier" />
+
+    <!-- Whitespace -->
+    <suppress files="" checks="SingleSpaceSeparator" />
+
+</suppressions>
+
+
+<!-- EOF -->