aboutsummaryrefslogtreecommitdiff
path: root/src/xdocs/config_filters.xml
blob: 4a5fa4b7ac01f85c2bd059f3efe176472cecd00c (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
<?xml version="1.0" encoding="UTF-8"?>

<document xmlns="http://maven.apache.org/XDOC/2.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">

  <head>
    <title>Filters</title>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"/>
    <script type="text/javascript" src="js/anchors.js"/>
    <script type="text/javascript" src="js/google-analytics.js"/>
    <link rel="icon" href="images/favicon.png" type="image/x-icon" />
    <link rel="shortcut icon" href="images/favicon.ico" type="image/ico" />
  </head>

  <body>
    <section name="Content">
      <macro name="toc">
        <param name="fromDepth" value="1"/>
        <param name="toDepth" value="1"/>
      </macro>
    </section>

    <section name="SeverityMatchFilter">
      <subsection name="Description">
        <p>
          Filter <code>SeverityMatchFilter</code> decides
          audit events according to the <a href="config.html#Severity">severity
          level</a> of the event.
        </p>
      </subsection>
      <subsection name="Properties">
        <table>
          <tr>
            <th>name</th>
            <th>description</th>
            <th>type</th>
            <th>default value</th>
          </tr>
          <tr>
            <td>severity</td>
            <td>the severity level of this filter</td>
            <td><a href="property_types.html#severity">Severity</a></td>
            <td><code>error</code></td>
          </tr>
          <tr>
            <td>acceptOnMatch</td>
            <td>
               If acceptOnMatch is <code>true</code>, then
               the filter accepts an audit event if and only if there is
               a match between the event's severity level and property
               severity. If acceptOnMatch
               is <code>false</code>, then the filter
               accepts an audit event if and only if there is not a match
               between the event's severity level and property severity.
            </td>
            <td><a href="property_types.html#boolean">Boolean</a></td>
            <td><code>true</code></td>
          </tr>
        </table>
      </subsection>
      <subsection name="Examples">
          <p>
            For example, the following configuration fragment directs the
            Checker to not report audit events with severity
            level <code>info</code>:
          </p>
          <source>
&lt;module name=&quot;SeverityMatchFilter&quot;&gt;
  &lt;property name=&quot;severity&quot; value=&quot;info&quot;/&gt;
  &lt;property name=&quot;acceptOnMatch&quot; value=&quot;false&quot;/&gt;
&lt;/module&gt;
          </source>
      </subsection>
      <subsection name="Example of Usage">
        <ul>
          <li>
            <a href="https://github.com/search?q=path%3Aconfig+filename%3Acheckstyle_checks.xml+repo%3Acheckstyle%2Fcheckstyle+SeverityMatchFilter">
            Checkstyle Style</a>
          </li>
        </ul>
      </subsection>
      <subsection name="Package">
        <p> com.puppycrawl.tools.checkstyle.filters </p>
      </subsection>

      <subsection name="Parent Module">
        <p> <a href="config.html#Checker">Checker</a> </p>
      </subsection>
    </section>

    <section name="SuppressionCommentFilter">
      <subsection name="Description">
          <p>
            Filter <code>SuppressionCommentFilter</code> uses
            pairs of comments to suppress audit events.
          </p>
          <p>
            Rationale: Sometimes there are legitimate reasons for violating
            a check.  When this is a matter of the code in question and not
            personal preference, the best place to override the policy is in
            the code itself.  Semi-structured comments can be associated
            with the check.  This is sometimes superior to a separate
            suppressions file, which must be kept up-to-date as the source
            file is edited.
          </p>
          <p>
            Usage: This filter only works in conjunction with a <code>FileContentsHolder</code>, since that check makes
            the suppression comments in the Java files available. A configuration that includes this filter must
            configure <code>FileContentsHolder</code> as a
            child module of <code>TreeWalker</code>. Note that the suppression comment should be put
            before the violation. You can use more than one suppression comment each on separate line.
          </p>
      </subsection>
      <subsection name="Properties">
          <table>
              <tr>
                  <th>name</th>
                  <th>description</th>
                  <th>type</th>
                  <th>default value</th>
              </tr>
              <tr>
                  <td>offCommentFormat</td>
                  <td>comment pattern to trigger filter to begin suppression</td>
                  <td><a href="property_types.html#regexp">Regular Expression</a></td>
                  <td><code>"CHECKSTYLE:OFF"</code></td>
              </tr>
              <tr>
                  <td>onCommentFormat</td>
                  <td>comment pattern to trigger filter to end suppression</td>
                  <td><a href="property_types.html#regexp">Regular Expression</a></td>
                  <td><code>"CHECKSTYLE:ON"</code></td>
              </tr>
              <tr>
                  <td>checkFormat</td>
                  <td>check pattern to suppress</td>
                  <td><a href="property_types.html#regexp">Regular Expression</a></td>
                  <td><code>".*"</code></td>
              </tr>
              <tr>
                  <td>messageFormat</td>
                  <td>message pattern to suppress</td>
                  <td><a href="property_types.html#regexp">Regular Expression</a></td>
                  <td><code>null</code></td>
              </tr>
              <tr>
                  <td>checkCPP</td>
                  <td>whether to check C++ style comments (<code>//</code>)</td>
                  <td><a href="property_types.html#boolean">Boolean</a></td>
                  <td><code>true</code></td>
              </tr>
              <tr>
                  <td>checkC</td>
                  <td>whether to check C style comments (<code>/* ... */</code>)</td>
                  <td><a href="property_types.html#boolean">Boolean</a></td>
                  <td><code>true</code></td>
              </tr>
          </table>
          <p>
              offCommentFormat and onCommentFormat must have equal <a
                  href="https://docs.oracle.com/javase/7/docs/api/java/util/regex/Matcher.html#groupCount()">paren counts</a>.
          </p>
      </subsection>
      <subsection name="Examples">
          <p>
              Make sure that comments are available to the filter by enabling FileContentsHolder:
          </p>
          <source>
&lt;module name=&quot;TreeWalker&quot;&gt;
              ...
  &lt;module name=&quot;FileContentsHolder&quot;/&gt;
              ...
&lt;/module&gt;
          </source>
          <p>
              To configure a filter to suppress audit events between a comment
              containing <code>CHECKSTYLE:OFF</code> and a comment containing
              <code>CHECKSTYLE:ON</code>:
          </p>
          <source>
&lt;module name=&quot;Checker&quot;&gt;
              ...
  &lt;module name=&quot;SuppressionCommentFilter&quot;/&gt;
              ...
&lt;/module&gt;
          </source>
          <p>
              To configure a filter to suppress audit events between a comment
              containing line <code>BEGIN GENERATED CODE</code> and a comment
              containing line <code>END GENERATED CODE</code>:
          </p>
          <source>
&lt;module name=&quot;SuppressionCommentFilter&quot;&gt;
  &lt;property name=&quot;offCommentFormat&quot; value=&quot;BEGIN GENERATED CODE&quot;/&gt;
  &lt;property name=&quot;onCommentFormat&quot; value=&quot;END GENERATED CODE&quot;/&gt;
&lt;/module>
          </source>
          <source>
//BEGIN GENERATED CODE
@Override
public boolean equals(Object obj) { ... } // No violation events will be reported

@Override
public int hashCode() { ... } // No violation events will be reported
//END GENERATED CODE
. . .
          </source>
          <p>
              To configure a filter so that <code>// stop constant
              check</code> and <code>// resume constant check</code> marks
              legitimate constant names:
          </p>
          <source>
&lt;module name=&quot;SuppressionCommentFilter&quot;&gt;
  &lt;property name=&quot;offCommentFormat&quot; value=&quot;stop constant check&quot;/&gt;
  &lt;property name=&quot;onCommentFormat&quot; value=&quot;resume constant check&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;ConstantNameCheck&quot;/&gt;
&lt;/module>
          </source>
          <source>
//stop constant check
public static final int someConstant; // won't warn here
//resume constant check
public static final int someConstant; // will warn here as constant's name doesn't match the
// pattern &quot;^[A-Z][A-Z0-9]*$&quot;
          </source>
          <p>
              To configure a filter so that <code>UNUSED OFF:
              <i>var</i></code> and <code>UNUSED ON: <i>var</i></code> marks a
              variable or parameter known not to be used by the code by
              matching the variable name in the message:
          </p>
          <source>
&lt;module name=&quot;SuppressionCommentFilter&quot;&gt;
  &lt;property name=&quot;offCommentFormat&quot; value=&quot;UNUSED OFF\: (\w+)&quot;/&gt;
  &lt;property name=&quot;onCommentFormat&quot; value=&quot;UNUSED ON\: (\w+)&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;Unused&quot;/&gt;
  &lt;property name=&quot;messageFormat&quot; value=&quot;^Unused \w+ '$1'.$&quot;/&gt;
&lt;/module&gt;
          </source>
          <source>
private static void foo(int a, int b) // UNUSED OFF: b
{
System.out.println(a);
}

private static void foo1(int a, int b) // UNUSED ON: b
{
System.out.println(a);
}
          </source>
          <p>
              To configure a filter so that name of suppressed check mentioned
              in comment <code>CSOFF: <i>regexp</i></code>
              and <code>CSN: <i>regexp</i></code> mark a matching check:
          </p>
          <source>
&lt;module name=&quot;SuppressionCommentFilter&quot;&gt;
  &lt;property name=&quot;offCommentFormat&quot; value=&quot;CSOFF\: ([\w\|]+)&quot;/&gt;
  &lt;property name=&quot;onCommentFormat&quot; value=&quot;CSON\: ([\w\|]+)&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;$1&quot;/&gt;
&lt;/module&gt;
          </source>
          <source>
public static final int lowerCaseConstant; // CSOFF: ConstantNameCheck
public static final int lowerCaseConstant1; // CSON: ConstantNameCheck
          </source>
          <p>
              To configure a filter to suppress all audit events between a comment
              containing <code>CHECKSTYLE_OFF: ALMOST_ALL</code> and a comment containing
              <code>CHECKSTYLE_OFF: ALMOST_ALL</code> except for the <em>EqualsHashCode</em> check:
          </p>
          <source>
&lt;module name=&quot;SuppressionCommentFilter&quot;&gt;
  &lt;property name=&quot;offCommentFormat&quot; value=&quot;CHECKSTYLE_OFF: ALMOST_ALL&quot;/&gt;
  &lt;property name=&quot;onCommentFormat&quot; value=&quot;CHECKSTYLE_ON: ALMOST_ALL&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;^((?!(EqualsHashCode)).)*$&quot;/&gt;
&lt;/module&gt;
          </source>
          <source>
public static final int array []; // CHECKSTYLE_OFF: ALMOST_ALL
private String [] strArray;
private int array1 []; // CHECKSTYLE_ON: ALMOST_ALL
          </source>
          <p>
              To configure a filter to suppress Check's violation message <b>which matches
              specified message in messageFormat</b> (so suppression will be not only by
              Check's name, but by message text additionally, as the same Check could report
              different by message format violations) between a comment
              containing <code>stop</code> and comment containing <code>resume</code>:
          </p>
          <source>
&lt;module name=&quot;SuppressionCommentFilter&quot;&gt;
  &lt;property name=&quot;offCommentFormat&quot; value=&quot;stop&quot;/&gt;
  &lt;property name=&quot;onCommentFormat&quot; value=&quot;resume&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;IllegalTypeCheck&quot;/&gt;
  &lt;property name=&quot;messageFormat&quot; value=&quot;^Declaring variables, return values or parameters of type 'GregorianCalendar' is not allowed.$&quot;/&gt;
&lt;/module&gt;
          </source>
          <p>
              Code before filter above is applied with Check's audit events:
          </p>
          <source>
...
GregorianCalendar calendar; // Warning here: Declaring variables, return values or parameters of type 'GregorianCalendar' is not allowed.
HashSet hashSet; // Warning here: Declaring variables, return values or parameters of type 'HashSet' is not allowed.
...
          </source>
          <p>
              Code after filter is applied:
          </p>
          <source>
...
//stop
GregorianCalendar calendar; // No warning here as it is suppressed by filter.
HashSet hashSet; // Warning here: Declaring variables, return values or parameters of type 'HashSet' is not allowed.
//resume
...
          </source>
          <p>
            It is possible to specify an ID of checks, so that it can be leveraged by the
            SuppressionCommentFilter to skip validations. The following examples show how to skip
            validations near code that is surrounded with <code>// CSOFF &lt;ID> (reason)</code>
            and <code>// CSON &lt;ID></code>, where ID is the ID of checks you want to suppress.
          </p>
          <p>
            Examples of Checkstyle checks configuration:
          </p>
          <source>
&lt;module name=&quot;RegexpSinglelineJava&quot;&gt;
  &lt;property name=&quot;id&quot; value=&quot;ignore&quot;/&gt;
  &lt;property name="format" value="^.*@Ignore\s*$"/&gt;
  &lt;property name="message" value="@Ignore should have a reason."/&gt;
&lt;/module&gt;

&lt;module name=&quot;RegexpSinglelineJava&quot;&gt;
  &lt;property name=&quot;id&quot; value=&quot;systemout&quot;/&gt;
  &lt;property name="format" value="^.*System\.(out|err).*$"/&gt;
  &lt;property name="message" value="Don't use System.out/err, use SLF4J instead."/&gt;
&lt;/module&gt;
          </source>
          <p>
            Example of SuppressionCommentFilter configuration (checkFormat which is set to '$1'
            points that ID of the checks is in the first group of offCommentFormat and
            onCommentFormat regular expressions):
          </p>
          <source>
&lt;module name="SuppressionCommentFilter&quot;&gt;
  &lt;property name="offCommentFormat" value="CSOFF (\w+) \(\w+\)"/&gt;
  &lt;property name="onCommentFormat" value="CSON (\w+)"/&gt;
  &lt;property name="checkFormat" value="$1"/&gt;
&lt;/module&gt;
          </source>
          <source>
// CSOFF ignore (test has not been implemented yet)
@Ignore // should NOT fail RegexpSinglelineJava
@Test
public void testMethod() { }
// CSON ignore

// CSOFF systemout (debug)
public static void foo() {
    System.out.println("Debug info."); // should NOT fail RegexpSinglelineJava
}
// CSON systemout
          </source>
          <p>
            Example of how to configure the check to suppress more than one checks.
          </p>
          <source>
&lt;module name="SuppressionCommentFilter&quot;&gt;
  &lt;property name="offCommentFormat" value="@cs-\: ([\w\|]+)"/&gt;
  &lt;property name="checkFormat" value="$1"/&gt;
&lt;/module&gt;
          </source>
          <source>
// @cs-: ClassDataAbstractionCoupling
// @cs-: MagicNumber
@Service // no violations from ClassDataAbstractionCoupling here
@Transactional
public class UserService {
  private int value = 10022; // no violations from MagicNumber here
}
          </source>
      </subsection>
      <subsection name="Example of Usage">
        <ul>
          <li>
            <a href="https://github.com/search?q=path%3Aconfig+filename%3Acheckstyle_checks.xml+repo%3Acheckstyle%2Fcheckstyle+SuppressionCommentFilter">
            Checkstyle Style</a>
          </li>
        </ul>
      </subsection>
      <subsection name="Package">
        <p> com.puppycrawl.tools.checkstyle.filters </p>
      </subsection>

      <subsection name="Parent Module">
        <p> <a href="config.html#Checker">Checker</a> </p>
      </subsection>
    </section>

    <section name="SuppressionFilter">
      <subsection name="Description">
          <p>
            Filter <code>SuppressionFilter</code> rejects
            audit events for Check errors according to
            a <a href="config.html#XML_Structure"><em>suppressions XML
            document</em></a> in a file. If there is no configured
            suppressions file or the optional is set to true and
            suppressions file was not found the Filter accepts all audit events.
          </p>
      </subsection>
      <subsection name="Properties">
          <table>
             <tr>
               <th>name</th>
               <th>description</th>
               <th>type</th>
               <th>default value</th>
             </tr>
             <tr>
               <td>file</td>
               <td>
                  the location of the <em>suppressions XML document</em> file.
                  The order the location is checked is:
                  <ol>
                    <li>as a filesystem location</li>
                    <li>
                       if no file found, and the location starts with either
                       <code>http://</code> or <code>https://</code>, then it
                       is interpreted as a URL
                    </li>
                    <li>
                       if no file found, then passed to the
                       <code>ClassLoader.getResource()</code> method.
                    </li>
                  </ol>
               </td>
               <td><a href="property_types.html#string">string</a></td>
               <td><code>none</code></td>
             </tr>
             <tr>
               <td>optional</td>
               <td>
                   Tells what to do when the file is not existing. If
                   optional is set to false the file must exist, or else
                   it ends with error. On the other hand if optional is
                   true and file is not found, the filter accept all
                   audit events.
               </td>
               <td><a href="property_types.html#boolean">Boolean</a></td>
               <td><code>false</code></td>
             </tr>
          </table>
      </subsection>
      <subsection name="Examples">
          <p>
              For example, the following configuration fragment directs the
              Checker to use a <code>SuppressionFilter</code>
              with suppressions
              file <code>config/suppressions.xml</code>:
          </p>
          <source>
&lt;module name=&quot;SuppressionFilter&quot;&gt;
  &lt;property name=&quot;file&quot; value=&quot;config/suppressions.xml&quot;/&gt;
  &lt;property name=&quot;optional&quot; value=&quot;false&quot;/&gt;
&lt;/module&gt;
          </source>
          <p>
            A <a href="config.html#XML_Structure"><em>suppressions XML
            document</em></a> contains a set
            of <code>suppress</code> elements, where
            each <code>suppress</code> element can have the
            following attributes:
          </p>
          <ul>
              <li>
                  <code>files</code> -
                  a <a href="property_types.html#regexp">Regular Expression</a>
                  matched against the file name associated with an audit
                  event. It is mandatory.
              </li>
              <li>
                  <code>checks</code> -
                  a <a href="property_types.html#regexp">Regular Expression</a>
                  matched against the name of the check associated with an audit
                  event. Optional if <code>id</code> is specified.
              </li>
              <li>
                  <code>id</code> -
                  a <a href="property_types.html#string">string</a>
                  matched against the ID of the check associated with an audit
                  event. Optional if <code>checks</code> is specified.
              </li>
              <li>
                  <code>lines</code> - a comma-separated list of
                  values, where each value is
                  an <a href="property_types.html#integer">integer</a> or a
                  range of integers denoted by integer-integer. It is optional.
              </li>
              <li>
                  <code>columns</code> - a comma-separated list of
                  values, where each value is
                  an <a href="property_types.html#integer">integer</a> or a
                  range of integers denoted by integer-integer. It is optional.
              </li>
          </ul>
          <p>
            Each audit event is checked against
            each <code>suppress</code> element. It is
            suppressed if all specified attributes match against the audit
            event.
          </p>
          <p>
            You can download template of empty suppression filter
            <a href="files/suppressions_none.xml">here</a>.
          </p>
          <p>
            The following suppressions XML document directs
            a <code>SuppressionFilter</code> to
            reject <code>JavadocStyleCheck</code> errors for
            lines 82 and 108 to 122 of
            file <code>AbstractComplexityCheck.java</code>,
            and <code>MagicNumberCheck</code> errors for line
            221 of file <code>JavadocStyleCheck.java</code>:
          </p>
          <source>
&lt;?xml version=&quot;1.0&quot;?&gt;

&lt;!DOCTYPE suppressions PUBLIC
&quot;-//Puppy Crawl//DTD Suppressions 1.1//EN&quot;
&quot;http://www.puppycrawl.com/dtds/suppressions_1_1.dtd&quot;&gt;

&lt;suppressions&gt;
&lt;suppress checks=&quot;JavadocStyleCheck&quot;
  files=&quot;AbstractComplexityCheck.java&quot;
  lines=&quot;82,108-122&quot;/&gt;
&lt;suppress checks=&quot;MagicNumberCheck&quot;
  files=&quot;JavadocStyleCheck.java&quot;
  lines=&quot;221&quot;/&gt;
&lt;/suppressions&gt;
          </source>
          <p>
            As another example to suppress Check by module id:
          </p>
          <source>
&lt;module name=&quot;DescendantToken&quot;&gt;
  &lt;property name=&quot;id&quot; value=&quot;stringEqual&quot;/&gt;
  &lt;property name=&quot;tokens&quot; value=&quot;EQUAL,NOT_EQUAL&quot;/&gt;
  &lt;property name=&quot;limitedTokens&quot; value=&quot;STRING_LITERAL&quot;/&gt;
  &lt;property name=&quot;maximumNumber&quot; value=&quot;0&quot;/&gt;
  &lt;property name=&quot;maximumDepth&quot; value=&quot;1&quot;/&gt;
&lt;/module&gt;

&lt;module name=&quot;DescendantToken&quot;&gt;
  &lt;property name=&quot;id&quot; value=&quot;switchNoDefault&quot;/&gt;
  &lt;property name=&quot;tokens&quot; value=&quot;LITERAL_SWITCH&quot;/&gt;
  &lt;property name=&quot;maximumDepth&quot; value=&quot;2&quot;/&gt;
  &lt;property name=&quot;limitedTokens&quot; value=&quot;LITERAL_DEFAULT&quot;/&gt;
  &lt;property name=&quot;minimumNumber&quot; value=&quot;1&quot;/&gt;
&lt;/module&gt;
          </source>
          <p>
            Then the following can be used to suppress only the first
            check and not the second by using
            the <code>id</code> attribute:
          </p>
          <source>
&lt;suppress id=&quot;stringEqual&quot; files=&quot;SomeTestCode.java&quot;/&gt;
          </source>
          <p>
            Suppress checks for hidden files and folders:
          </p>
          <source>
&lt;suppress files=&quot;[/\\]\..+&quot; checks=&quot;.*&quot;/&gt;
          </source>
          <p>
            Suppress checks for Maven-generated code:
          </p>
          <source>
&lt;suppress files=&quot;[/\\]target[/\\]&quot; checks=&quot;.*&quot;/&gt;
          </source>
          <p>
            Suppress checks for archives, classes and other binary files:
          </p>
          <source>
&lt;suppress files=&quot;.+\.(?:jar|zip|war|class|tar|bin)$&quot; checks=&quot;.*&quot;/&gt;
          </source>
          <p>
            Suppress checks for image files:
          </p>
          <source>
&lt;suppress files=&quot;.+\.(?:png|gif|jpg|jpeg)$&quot; checks=&quot;.*&quot;/&gt;
          </source>
          <p>
            Suppress checks for non-java files:
          </p>
          <source>
&lt;suppress files=&quot;.+\.(?:txt|xml|csv|sh|thrift|html|sql|eot|ttf|woff|css|png)$&quot; checks=&quot;.*&quot;/&gt;
          </source>
          <p>
            Suppress all checks in generated sources:
          </p>
          <source>
&lt;suppress checks=&quot;.*&quot; files=&quot;com[\\/]mycompany[\\/]app[\\/]gen[\\/]&quot;/&gt;
          </source>
          <p>
            Suppress FileLength check on integration tests in certain folder:
          </p>
          <source>
&lt;suppress checks=&quot;FileLength&quot; files=&quot;com[\\/]mycompany[\\/]app[\\/].*IT.java&quot;/&gt;
          </source>
      </subsection>
      <subsection name="Example of Usage">
        <ul>
          <li>
            <a href="https://github.com/search?q=path%3Aconfig+filename%3Acheckstyle_checks.xml+repo%3Acheckstyle%2Fcheckstyle+SuppressionFilter">
            Checkstyle Style</a>
          </li>
        </ul>
      </subsection>
      <subsection name="Package">
        <p> com.puppycrawl.tools.checkstyle.filters </p>
      </subsection>

      <subsection name="Parent Module">
        <p> <a href="config.html#Checker">Checker</a> </p>
      </subsection>
    </section>

    <section name="SuppressWarningsFilter">
      <subsection name="Description">
          <p>
              Filter <code>SuppressWarningsFilter</code> uses annotations to
              suppress audit events.
          </p>
          <p>
              Rationale: Same as for
              <code>SuppressionCommentFilter</code>. In the contrary to it
              here, comments are not used comments but the builtin syntax of
              <code>@SuppressWarnings</code>. This can be perceived as a
              more elegant solution than using comments. Also this approach
              maybe supported by various IDE.
          </p>
          <p>
              Usage: This filter only works in conjunction with a
              <a href="config_annotation.html#SuppressWarningsHolder">SuppressWarningsHolder</a>, since that check finds
              the annotations in the Java files and makes them available for
              the filter. Because of that, a configuration that includes
              this filter must also include
              <code>SuppressWarningsHolder</code> as a child module of the
              <code>TreeWalker</code>. Name of check in annotation is case-insensitive
              and should be written with any dotted prefix or "Check" suffix removed.
          </p>
      </subsection>
      <subsection name="Examples">
          <p>
              To configure the check that makes tha annotations available to
              the filter.
          </p>
          <source>
&lt;module name="TreeWalker"&gt;
              ...
&lt;module name="SuppressWarningsHolder" /&gt;
              ...
&lt;/module&gt;
          </source>
          <p>To configure filter to suppress audit events for annotations add:</p>
          <source>
&lt;module name="SuppressWarningsFilter" /&gt;
          </source>
          <source>
@SuppressWarnings({"memberName"})
private int J; // should NOT fail MemberNameCheck

@SuppressWarnings({"MemberName"})
@SuppressWarnings({"NoWhitespaceAfter"})
private int [] ARRAY; // should NOT fail MemberNameCheck and NoWhitespaceAfterCheck
          </source>
          <p>
            It is possible to specify an ID of checks, so that it can be leveraged by the
            SuppressWarningsFilter to skip validations. The following examples show how to skip
            validations near code that has  <code>@SuppressWarnings("checkstyle:&lt;ID>")</code> or
            just <code>@SuppressWarnings("&lt;ID>")</code> annotation, where ID is the ID of checks
            you want to suppress.
          </p>
          <p>
            Example of Checkstyle check configuration:
          </p>
          <source>
&lt;module name="RegexpSinglelineJava&quot;&gt;
  &lt;property name="id" value="systemout"/&gt;
  &lt;property name="format" value=&quot;^.*System\.(out|err).*$&quot;/&gt;
  &lt;property name="message" value="Don't use System.out/err, use SLF4J instead."/&gt;
&lt;/module&gt;
          </source>
          <p>
            To make the annotations available to the filter.
          </p>
          <source>
&lt;module name=&quot;TreeWalker&quot;&gt;
  ...
  &lt;module name=&quot;SuppressWarningsHolder&quot; /&gt;
  ...
&lt;/module&gt;
          </source>
          <p>
            To configure filter to suppress audit events for annotations add:
          </p>
          <source>
&lt;module name=&quot;SuppressWarningsFilter&quot; /&gt;
          </source>
          <source>
@SuppressWarnings("checkstyle:systemout")
public static void foo() {
  System.out.println("Debug info."); // should NOT fail RegexpSinglelineJava
}
          </source>
      </subsection>
      <subsection name="Example of Usage">
        <ul>
          <li>
            <a href="https://github.com/search?q=path%3Aconfig+filename%3Acheckstyle_checks.xml+repo%3Acheckstyle%2Fcheckstyle+SuppressWarningsFilter">
            Checkstyle Style</a>
          </li>
        </ul>
      </subsection>
      <subsection name="Package">
        <p> com.puppycrawl.tools.checkstyle.filters </p>
      </subsection>

      <subsection name="Parent Module">
        <p> <a href="config.html#Checker">Checker</a> </p>
      </subsection>
    </section>

    <section name="SuppressWithNearbyCommentFilter">
        <subsection name="Description">
            <p>
                Filter <code>SuppressWithNearbyCommentFilter</code> uses
                individual comments to suppress audit events.
            </p>
            <p>
                Rationale: Same as <code>SuppressionCommentFilter</code>.
                Whereas the SuppressionCommentFilter uses matched pairs of
                filters to turn on/off comment matching,
                <code>SuppressWithNearbyCommentFilter</code> uses
                single comments.  This requires fewer lines to mark a region, and
                may be aesthetically preferable in some contexts.
            </p>
            <p>
                Usage: This filter only works in conjunction with a <code>FileContentsHolder</code>, since that check makes
                the suppression comments in the Java files available. A configuration that includes this filter must
                configure <code>FileContentsHolder</code> as a
                child module of <code>TreeWalker</code>.
            </p>
        </subsection>
        <subsection name="Properties">
            <table>
                <tr>
                    <th>name</th>
                    <th>description</th>
                    <th>type</th>
                    <th>default value</th>
                </tr>
                <tr>
                    <td>commentFormat</td>
                    <td>comment pattern to trigger filter to begin suppression</td>
                    <td><a href="property_types.html#regexp">Regular Expression</a></td>
                    <td><code>"SUPPRESS CHECKSTYLE (\w+)"</code></td>
                </tr>
                <tr>
                    <td>checkFormat</td>
                    <td>check pattern to suppress</td>
                    <td><a href="property_types.html#regexp">Regular Expression</a></td>
                    <td><code>".*"</code></td>
                </tr>
                <tr>
                    <td>messageFormat</td>
                    <td>message pattern to suppress</td>
                    <td><a href="property_types.html#regexp">Regular Expression</a></td>
                    <td><code>null</code></td>
                </tr>
                <tr>
                    <td>influenceFormat</td>
                    <td>a negative/zero/positive value that defines the number of
                        lines preceding/at/following the suppression comment</td>
                    <td><a href="property_types.html#regexp">Regular Expression</a></td>
                    <td><code>"0"</code></td>
                </tr>
                <tr>
                    <td>checkCPP</td>
                    <td>whether to check C++ style comments (<code>//</code>)</td>
                    <td><a href="property_types.html#boolean">Boolean</a></td>
                    <td><code>true</code></td>
                </tr>
                <tr>
                    <td>checkC</td>
                    <td>whether to check C style comments (<code>/* ... */</code>)</td>
                    <td><a href="property_types.html#boolean">Boolean</a></td>
                    <td><code>true</code></td>
                </tr>
            </table>
        </subsection>
        <subsection name="Examples">
            <p>
                To configure the check that makes comments available to the filter:
            </p>
            <source>
&lt;module name=&quot;TreeWalker&quot;&gt;
                ...
  &lt;module name=&quot;FileContentsHolder&quot;/&gt;
                ...
&lt;/module&gt;
            </source>
            <p>
                To configure a filter to suppress audit events for <i>check</i>
                on any line with a comment <code>SUPPRESS CHECKSTYLE <i>check</i></code>:
            </p>
            <source>
&lt;module name=&quot;SuppressWithNearbyCommentFilter&quot;/&gt;
            </source>
            <source>
private int [] array; // SUPPRESS CHECKSTYLE
            </source>
            <p>
                To configure a filter to suppress all audit events on any line
                containing the comment <code>CHECKSTYLE IGNORE THIS LINE</code>:
            </p>
            <source>
&lt;module name=&quot;SuppressWithNearbyCommentFilter&quot;&gt;
  &lt;property name=&quot;commentFormat&quot; value=&quot;CHECKSTYLE IGNORE THIS LINE&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;.*&quot;/&gt;
  &lt;property name=&quot;influenceFormat&quot; value=&quot;0&quot;/&gt;
&lt;/module>
            </source>
            <source>
public static final int lowerCaseConstant; // CHECKSTYLE IGNORE THIS LINE
            </source>
            <p>
                To configure a filter so that
                <code>// OK to catch (Throwable|Exception|RuntimeException) here</code>
                permits the current and previous line to avoid generating an IllegalCatch
                audit event:
            </p>
            <source>
&lt;module name=&quot;SuppressWithNearbyCommentFilter&quot;&gt;
  &lt;property name=&quot;commentFormat&quot; value=&quot;OK to catch (\w+) here&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;IllegalCatchCheck&quot;/&gt;
  &lt;property name=&quot;messageFormat&quot; value=&quot;$1&quot;/&gt;
  &lt;property name=&quot;influenceFormat&quot; value=&quot;-1&quot;/&gt;
&lt;/module>
            </source>
            <source>
. . .
catch (RuntimeException re) {
// OK to catch RuntimeException here
}
catch (Throwable th) { ... }
. . .
            </source>
            <p>
                To configure a filter so that <code>CHECKSTYLE IGNORE <i>check</i> FOR NEXT <i>var</i> LINES</code>
                avoids triggering any audits for the given check for the current line and the next <i>var</i> lines
                (for a total of <i>var</i>+1 lines):
            </p>
            <source>
&lt;module name=&quot;SuppressWithNearbyCommentFilter&quot;&gt;
  &lt;property name=&quot;commentFormat&quot; value=&quot;CHECKSTYLE IGNORE (\w+) FOR NEXT (\d+) LINES&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;$1&quot;/&gt;
  &lt;property name=&quot;influenceFormat&quot; value=&quot;$2&quot;/&gt;
&lt;/module&gt;
            </source>
            <source>
public static final int lowerCaseConstant; // CHECKSTYLE IGNORE ConstantNameCheck FOR NEXT 3 LINES
public static final int lowerCaseConstant1;
public static final int lowerCaseConstant2;
public static final int lowerCaseConstant3;
public static final int lowerCaseConstant4; // will warn here
            </source>
            <p>
                To configure a filter to avoid any audits on code like:
            </p>
            <source>
&lt;module name=&quot;SuppressWithNearbyCommentFilter&quot;&gt;
  &lt;property name=&quot;commentFormat&quot; value=&quot;ALLOW (\\w+) ON PREVIOUS LINE&quot;/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;$1&quot;/&gt;
  &lt;property name=&quot;influenceFormat&quot; value=&quot;-1&quot;/&gt;
&lt;/module&gt;
            </source>
            <source>
private int D2;
// ALLOW MemberName ON PREVIOUS LINE
. . .
            </source>
            <p>
                To configure a filter to allow suppress one or more Checks(separated by &quot;|&quot;)
                and demand comment no less than 14 symbols:
            </p>
            <source>
&lt;module name="SuppressWithNearbyCommentFilter&quot;&gt;
  &lt;property name="commentFormat" value="@cs\.suppress \[(\w+(\|\w+)*)\] \w[-\.'`,:;\w ]{14,}"/&gt;
  &lt;property name="checkFormat" value="$1"/&gt;
  &lt;property name="influenceFormat" value="1"/&gt;
&lt;/module>
            </source>
            <source>
public static final int [] array; // @cs.suppress [ConstantName|NoWhitespaceAfter] A comment here
            </source>
            <p>
              It is possible to specify an ID of checks, so that it can be leveraged by the
              SuppressWithNearbyCommentFilter to skip validations. The following examples
              show how to skip validations near code that has comment like
              <code>// @cs-: &lt;ID/> (reason)</code>, where ID is the ID of checks you want to
              suppress.
            </p>
            <p>
              Examples of Checkstyle checks configuration:
            </p>
            <source>
&lt;module name=&quot;RegexpSinglelineJava&quot;&gt;
  &lt;property name=&quot;id&quot; value=&quot;ignore&quot;/&gt;
  &lt;property name="format" value="^.*@Ignore\s*$"/&gt;
  &lt;property name="message" value="@Ignore should have a reason."/&gt;
&lt;/module&gt;

&lt;module name=&quot;RegexpSinglelineJava&quot;&gt;
  &lt;property name=&quot;id&quot; value=&quot;systemout&quot;/&gt;
  &lt;property name="format" value="^.*System\.(out|err).*$"/&gt;
  &lt;property name="message" value="Don't use System.out/err, use SLF4J instead."/&gt;
&lt;/module&gt;
            </source>
            <p>
              Example of SuppressWithNearbyCommentFilter configuration (checkFormat which
              is set to '$1' points that ID of the checks is in the first group of
              commentFormat regular expressions):
            </p>
            <source>
&lt;module name=&quot;SuppressWithNearbyCommentFilter&quot;&gt;
  &lt;property name=&quot;commentFormat&quot; value=&quot;@cs-: (\w+) \(\w+\)"/&gt;
  &lt;property name=&quot;checkFormat&quot; value=&quot;$1&quot;/&gt;
  &lt;property name=&quot;influenceFormat&quot; value=&quot;0&quot;/&gt;
&lt;/module&gt;
            </source>
            <source>
@Ignore // @cs-: ignore (test has not been implemented yet)
@Test
public void testMethod() { }

public static void foo() {
  System.out.println("Debug info."); // @cs-: systemout (should not fail RegexpSinglelineJava)
}
            </source>
            <p>
              Example of how to configure the check to suppress more than one checks.
              The influence format format is specified in the second regexp group.
            </p>
            <source>
&lt;module name="SuppressWithNearbyCommentFilter&quot;&gt;
  &lt;property name="commentFormat" value="@cs-\: ([\w\|]+) influence (\d+)"/&gt;
  &lt;property name="checkFormat" value="$1"/&gt;
  &lt;property name="influenceFormat" value="$2"/&gt;
  &lt;/module&gt;
            </source>
            <source>
// @cs-: ClassDataAbstractionCoupling influence 2
// @cs-: MagicNumber influence 4
@Service // no violations from ClassDataAbstractionCoupling here
@Transactional
public class UserService {
  private int value = 10022; // no violations from MagicNumber here
}
            </source>
        </subsection>
        <subsection name="Example of Usage">
        <ul>
          <li>
            <a href="https://github.com/search?q=path%3Aconfig+filename%3Acheckstyle_checks.xml+repo%3Acheckstyle%2Fcheckstyle+SuppressWithNearbyCommentFilter">
            Checkstyle Style</a>
          </li>
        </ul>
        </subsection>
        <subsection name="Package">
            <p> com.puppycrawl.tools.checkstyle.filters </p>
        </subsection>

        <subsection name="Parent Module">
          <p> <a href="config.html#Checker">Checker</a> </p>
        </subsection>
      </section>
  </body>
</document>