mirror of
https://github.com/google/nomulus.git
synced 2025-07-25 03:58:34 +02:00
14 lines
582 B
XML
14 lines
582 B
XML
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE suppressions PUBLIC
|
|
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
|
|
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
|
|
|
|
<suppressions>
|
|
<!-- Ignore generated files in Checkstyle -->
|
|
<suppress files="[/\\].*[/\\]generated.*[/\\]" checks="."/>
|
|
<!-- Ignore Javadoc checks in test files -->
|
|
<suppress files="[/\\].*[/\\]src/test/java/.*[/\\]" checks="JavadocType"/>
|
|
<!-- ofy() regex check doesn't apply to these files -->
|
|
<suppress files="AugmentedDeleter.java|AugmentedSaver.java|Ofy.java" checks="RegexpSingleline"/>
|
|
</suppressions>
|