View Javadoc
1   /*
2   SuppressionCommentFilter
3   offCommentFormat = CSOFF
4   onCommentFormat = CSON
5   checkFormat = MemberNameCheck
6   messageFormat = (default)(null)
7   idFormat = (default)(null)
8   checkCPP = (default)true
9   checkC = (default)true
10  
11  
12  com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck
13  id = ignore
14  format = (default)^[a-z][a-zA-Z0-9]*$
15  applyToPublic = (default)true
16  applyToProtected = (default)true
17  applyToPackage = (default)true
18  applyToPrivate = (default)true
19  
20  */
21  
22  package com.puppycrawl.tools.checkstyle.filters.suppressioncommentfilter;
23  
24  public class InputSuppressionCommentFilterSuppressById6 {
25  
26      // CSOFF
27      int line_length = 100; // filtered violation
28      //CSON
29  }