Enable checkstyle in buildSrc

See gh-31445
This commit is contained in:
Johnny Lim 2023-10-17 19:09:12 +09:00 committed by Stéphane Nicoll
parent 73a5229b03
commit e95ba4c205
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="com.puppycrawl.tools.checkstyle.Checker">
<!-- TreeWalker Checks -->
<module name="com.puppycrawl.tools.checkstyle.TreeWalker">
<!-- Imports -->
<module name="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck">
<property name="processJavadoc" value="true"/>
</module>
</module>
</module>