configChecks = getCheckStyleChecksReferencedInConfig(CONFIG_PATH);
for (String moduleName : getSimpleNames(getCheckstyleModules())) {
- if ("SuppressionCommentFilter".equals(moduleName)
- || "SeverityMatchFilter".equals(moduleName)
- || "SuppressWithNearbyCommentFilter".equals(moduleName)
- || "SuppressWarningsFilter".equals(moduleName)) {
- continue;
- }
-
Assert.assertTrue("checkstyle_checks.xml is missing module: " + moduleName,
configChecks.contains(moduleName));
}
diff --git a/src/xdocs/config_filters.xml b/src/xdocs/config_filters.xml
index 12f29003f..32832a2bc 100644
--- a/src/xdocs/config_filters.xml
+++ b/src/xdocs/config_filters.xml
@@ -73,6 +73,12 @@
+
com.puppycrawl.tools.checkstyle.filters
@@ -528,6 +534,12 @@ HashSet hashSet; // Warning here: Declaring variables, return values or paramete
+
com.puppycrawl.tools.checkstyle.filters
@@ -713,6 +725,12 @@ public static final int [] array; // @cs.suppress ConstantName | NoWhitespaceAft
+
com.puppycrawl.tools.checkstyle.filters
@@ -774,6 +792,12 @@ private int [] ARRAY; // should NOT fail MemberNameCheck and NoWhitespaceAfterCh
+
com.puppycrawl.tools.checkstyle.filters