24 lines
734 B
XML
24 lines
734 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">
|
|
<property name="fileExtensions" value="java, properties, xml"/>
|
|
|
|
<module name="BeforeExecutionExclusionFileFilter">
|
|
<property name="fileNamePattern" value="module\-info\.java$"/>
|
|
</module>
|
|
|
|
<module name="RegexpHeader">
|
|
<property name="headerFile" value="${checkstyle.header.file}" />
|
|
<property name="fileExtensions" value="java" />
|
|
</module>
|
|
|
|
<module name="NewlineAtEndOfFile"/>
|
|
|
|
<module name="SuppressWarningsFilter" />
|
|
|
|
<module name="io.spring.nohttp.checkstyle.check.NoHttpCheck" />
|
|
</module>
|