mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-22 14:24:48 +00:00
Enforce the checkstyle header rule and fix a few classes that had malformed headers. Issue gh-8945
17 lines
724 B
XML
17 lines
724 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="com.puppycrawl.tools.checkstyle.Checker">
|
|
<module name="SuppressionFilter">
|
|
<property name="file"
|
|
value="${config_loc}/checkstyle-suppressions.xml" />
|
|
</module>
|
|
<module name="com.puppycrawl.tools.checkstyle.checks.header.RegexpHeaderCheck">
|
|
<property name="headerFile" value="${config_loc}/header.txt" />
|
|
<property name="fileExtensions" value="java" />
|
|
</module>
|
|
<module name="io.spring.javaformat.checkstyle.SpringChecks">
|
|
<property name="excludes" value="io.spring.javaformat.checkstyle.check.SpringHeaderCheck" />
|
|
</module>
|
|
</module> |