brouter/config/checkstyle/checkstyle.xml
Manuel Fuhr f18cded3a7 Enable checkstyle checks
Basic indention / formatting checks but suppressed for most modules
because they currently fail the checks.
2022-07-09 07:52:40 +02:00

18 lines
497 B
XML

<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
<module name="SuppressionFilter">
<property name="file" value="${config_loc}/suppressions.xml"/>
</module>
<module name="FileTabCharacter"/>
<module name="TreeWalker">
<module name="Indentation">
<property name="basicOffset" value="2"/>
</module>
</module>
</module>