Some checks failed
Quality Check / Validate OAS (push) Successful in 39s
Build Application / build (push) Successful in 1m14s
Build Application / build-docker (push) Failing after 11s
Build Application / release (push) Has been skipped
Quality Check / Linting (push) Successful in 1m2s
Quality Check / Testing (push) Successful in 47s
Quality Check / Static Analysis (push) Successful in 1m4s
21 lines
638 B
XML
21 lines
638 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="120" />
|
|
</module>
|
|
<module name="FileTabCharacter">
|
|
<property name="eachLine" value="true" />
|
|
</module>
|
|
|
|
<module name="NewlineAtEndOfFile" />
|
|
|
|
</module>
|
|
|