Closed beatyt closed 7 years ago
By default Checkstyle uses system line endings. Windows uses CRLF but all of these files were created with LF endings.
The fix is to change
<module name="NewlineAtEndOfFile" />
to
<module name="NewlineAtEndOfFile"> <property name="lineSeparator" value="lf"/> </module>
Hi! I've submitted a PR for this, could you review it, please?
By default Checkstyle uses system line endings. Windows uses CRLF but all of these files were created with LF endings.
The fix is to change
to