casino/backend/config/checkstyle/checkstyle.xml
Jan Klattenhoff d117f5912a
Some checks failed
CI / eslint (pull_request) Successful in 17s
CI / prettier (pull_request) Successful in 24s
CI / test-build (pull_request) Successful in 45s
CI / Checkstyle Main (pull_request) Failing after 2m57s
build: update Checkstyle container image version
2025-02-13 12:00:38 +01:00

23 lines
655 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>