Skip to content

Commit

Permalink
Added suppression.xml to supress unnecessary checkstyle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
forkimenjeckayang committed Jul 30, 2024
1 parent e734409 commit 182a7b0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions suppression.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppression 1.0//EN"
"https://checkstyle.org/dtds/suppressions_1_0.dtd">
<suppressions>
<!-- Suppress the SummaryJavadoc(checks first sentence of javadoc comment for ".") check for all .java files -->
<suppress checks="SummaryJavadoc"
files=".*\.java"/>
<!-- Suppress the CustomImportOrderCheck(suppress lexicographical order) warnings for .java files -->
<suppress checks="CustomImportOrder"
files=".*\.java"/>
</suppressions>

0 comments on commit 182a7b0

Please sign in to comment.