1 /*xml 2 <module name="Checker"> 3 <module name="TreeWalker"> 4 <module name="SuppressWithNearbyCommentFilter"> 5 <property name="commentFormat" value="CHECKSTYLE IGNORE THIS LINE"/> 6 <property name="checkFormat" value=".*"/> 7 <property name="influenceFormat" value="0"/> 8 </module> 9 <module name="ConstantName"/> 10 </module> 11 </module> 12 */ 13 package com.puppycrawl.tools.checkstyle.filters.suppresswithnearbycommentfilter; 14 // xdoc section -- start 15 public class Example2 { 16 public static final int lowerCaseConstant = 1; // CHECKSTYLE IGNORE THIS LINE 17 } 18 // xdoc section -- end