jclouds has to use git core.autocrlf false (or LF line endings) to pass tests. Without this checkstyle setting, checkstyle fails on windows (looking for CRLF).

This commit is contained in:
Zack Shoylev 2014-09-15 11:30:22 -05:00
parent d309e45725
commit 816e70ea7b
1 changed files with 4 additions and 2 deletions

View File

@ -21,8 +21,10 @@
<module name="Checker">
<property name="severity" value="warning"/>
<module name="NewlineAtEndOfFile"/>
<module name="TreeWalker">
<module name="NewlineAtEndOfFile">
<property name="lineSeparator" value="lf"/>
</module>
<module name="TreeWalker">
<module name="AvoidStarImport"/>
<module name="EmptyStatement"/>
<module name="IllegalInstantiation">