fix checkstyle on windows (#881)

This commit is contained in:
Joseph Petersen 2019-05-10 17:15:40 +02:00 committed by GitHub
parent 290704ebf1
commit b17e6f1797
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
<module name="Checker"> <module name="Checker">
<module name="FileTabCharacter" /> <module name="FileTabCharacter" />
<module name="NewlineAtEndOfFile" /> <module name="NewlineAtEndOfFile">
<property name="lineSeparator" value="lf" />
</module>
<module name="RegexpSingleline"> <module name="RegexpSingleline">
<property name="format" value="\s+$"/> <property name="format" value="\s+$"/>
<property name="message" value="Trailing spaces are not allowed."/> <property name="message" value="Trailing spaces are not allowed."/>