Skip to content

Commit c271774

Browse files
committed
Suppress Checkstyle warning (#22)
1 parent 31c81f5 commit c271774

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

config/checkstyle/checkstyle.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,5 +161,8 @@
161161
</module>
162162
<module name="HiddenField" />
163163
</module>
164+
<module name="SuppressionFilter">
165+
<property name="file" value="${suppressionFile}" default="config/checkstyle/suppressions.xml"/>
166+
</module>
164167
<module name="Translation" />
165168
</module>

config/checkstyle/suppressions.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0"?>
2+
3+
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
4+
5+
<suppressions>
6+
<suppress checks="MemberNameCheck" files=".*Hcpcs\.java"/>
7+
</suppressions>

0 commit comments

Comments
 (0)