LF8/config/checkstyle/checkstyle.xml
Jan Klattenhoff 37c9a466d5
All checks were successful
Quality Check / Gradle Check (pull_request) Successful in 4m19s
build: add checkstyle configuration and workflow jobs
2024-09-25 10:34:06 +02:00

24 lines
656 B
XML

<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd"
>
<module name="Checker">
<module name="SuppressionFilter">
<property name="file" value="${config_loc}/checkstyle-ignore.xml"/>
</module>
<property name="severity" value="error"/>
<property name="tabWidth" value="4"/>
<module name="LineLength">
<property name="max" value="500"/>
</module>
<module name="FileTabCharacter">
<property name="eachLine" value="true"/>
</module>
<module name="NewlineAtEndOfFile"/>
</module>