Home | History | Annotate | Download | only in checkstyle
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
      3 <suppressions>
      4 
      5     <!-- Note: Checkstyle puts the absolute path of files through the suppress filter, so the
      6          patterns below will match sub-directories. Notably, for overlays where the path is
      7          something like overlay/frameworks/opt/setupwizard will match the regex filter
      8          "frameworks/opt/setupwizard". This is probably OK for most cases since they are overlay
      9          of the original app and should have the same coding style. -->
     10 
     11     <!-- Robolectric uses magic method names like `__constructor__` -->
     12     <suppress files="/robotest/" checks="MethodName" />
     13 
     14 </suppressions>
     15