Browse Source

Enable checkstyle in buildSrc

See gh-31445
pull/30300/merge
Johnny Lim 1 year ago committed by Stéphane Nicoll
parent
commit
e95ba4c205
  1. 17
      buildSrc/config/checkstyle/checkstyle.xml

17
buildSrc/config/checkstyle/checkstyle.xml

@ -0,0 +1,17 @@ @@ -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>
Loading…
Cancel
Save