Skip to content

Commit ec40107

Browse files
committed
suppress checkstyle on Messages.java
1 parent 134cda2 commit ec40107

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@
206206
<configLocation>
207207
src/test/resources/checkstyle/checkstyle-config.xml
208208
</configLocation>
209+
<suppressionsLocation>
210+
src/test/resources/checkstyle/checkstyle-suppressions.xml
211+
</suppressionsLocation>
209212
</configuration>
210213
</plugin>
211214
</plugins>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0"?>
2+
3+
<!DOCTYPE suppressions PUBLIC
4+
"-//Puppy Crawl//DTD Suppressions 1.0//EN"
5+
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
6+
7+
<suppressions>
8+
<suppress checks=".*" files="Messages.java"/>
9+
</suppressions>

0 commit comments

Comments
 (0)