We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2391cc0 commit ea70564Copy full SHA for ea70564
src/checkstyle/checkstyle.xml
@@ -10,8 +10,14 @@
10
<property name="lineSeparator" value="lf"/>
11
</module>
12
13
+ <!-- Filter out Checkstyle warnings that have been suppressed with the @SuppressWarnings annotation -->
14
+ <module name="SuppressWarningsFilter" />
15
+
16
<!-- TreeWalker Checks -->
17
<module name="com.puppycrawl.tools.checkstyle.TreeWalker">
18
+ <!-- Make the @SuppressWarnings annotations available to Checkstyle -->
19
+ <module name="SuppressWarningsHolder" />
20
21
<!-- Annotations -->
22
<module name="com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck">
23
<property name="elementStyle" value="compact" />
0 commit comments