Skip to content

Commit 7aa1d95

Browse files
Suppress checkstyle checks for Javadoc
1 parent 2e9acad commit 7aa1d95

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,13 @@
112112
<version>3.2.2</version>
113113
<configuration>
114114
<configLocation>google_checks.xml</configLocation>
115+
<!-- <consoleOutput>true</consoleOutput> -->
116+
<suppressionsLocation>
117+
src/main/resources/checkstyle-suppressions.xml
118+
</suppressionsLocation>
119+
<suppressionsFileExpression>
120+
checkstyle.suppressions.file
121+
</suppressionsFileExpression>
115122
</configuration>
116123
<executions>
117124
<execution>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.0//EN" "http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
3+
4+
<suppressions>
5+
<suppress checks="Javadoc" files="." />
6+
</suppressions>

0 commit comments

Comments
 (0)