Enable checkstyle checks

Basic indention / formatting checks but suppressed for most modules
because they currently fail the checks.
This commit is contained in:
Manuel Fuhr 2022-07-09 07:43:57 +02:00
parent c80e34fdc5
commit f18cded3a7
2 changed files with 11 additions and 2 deletions

View file

@ -8,9 +8,11 @@
<property name="file" value="${config_loc}/suppressions.xml"/>
</module>
<!-- <module name="FileTabCharacter"/> -->
<module name="FileTabCharacter"/>
<module name="TreeWalker">
<!-- <module name="Indentation"/> -->
<module name="Indentation">
<property name="basicOffset" value="2"/>
</module>
</module>
</module>

View file

@ -5,4 +5,11 @@
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<suppress files="brouter-codec/.*" checks=".*"/>
<suppress files="brouter-core/.*" checks=".*"/>
<suppress files="brouter-expressions/.*" checks=".*"/>
<suppress files="brouter-map-creator/.*" checks=".*"/>
<suppress files="brouter-mapaccess/.*" checks=".*"/>
<suppress files="brouter-server/.*" checks=".*"/>
<suppress files="brouter-util/.*" checks=".*"/>
</suppressions>