1 /*xml 2 <module name="Checker"> 3 <module name="SuppressWithNearbyTextFilter"> 4 <property name="checkPattern" value="LineLength"/> 5 <property name="nearbyTextPattern" 6 value="<a href="[^"]+">"/> 7 </module> 8 <module name="LineLength"> 9 <property name="max" value="70"/> 10 </module> 11 </module> 12 */ 13 14 package com.puppycrawl.tools.checkstyle.filters.suppresswithnearbytextfilter; 15 // xdoc section -- start 16 public class Example9 { 17 /** 18 * Flag description. 19 * Disabled until <a href="www.github.com/owner/repo/issue/9#comment"> 20 */ 21 public static final boolean SOME_FLAG = false; 22 } 23 // xdoc section -- end