From 84b798100936eb15c1adb8027f9c326072388b79 Mon Sep 17 00:00:00 2001 From: gprat <guylaine.prat@c-s.fr> Date: Fri, 26 Jun 2020 18:48:46 +0200 Subject: [PATCH] Added generic new line property to checkstyle.xml. New line property should now be valid for linux, windows and mac os users. --- checkstyle.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/checkstyle.xml b/checkstyle.xml index 68a0ca08..f7f6883b 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -104,5 +104,7 @@ <property name="headerFile" value="${checkstyle.header.file}" /> </module> <module name="FileTabCharacter"/> - <module name="NewlineAtEndOfFile"/> + <module name="NewlineAtEndOfFile"> + <property name="lineSeparator" value="LF_CR_CRLF"/> + </module> </module> -- GitLab