diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-05-17 00:24:44 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-05-17 00:24:44 -0700 |
commit | e816b0e9f3023f31b3ed0d984ded755d07dcb9b3 (patch) | |
tree | 6d94a503047be5e9b4a9f04bc28391d1c78fa295 | |
parent | c295791fa85385e06d98c2708f1719fe01d6a920 (diff) | |
parent | 4d8e8208c9fdfcad697df25119645eccc880dfea (diff) | |
download | trackermap-server-e816b0e9f3023f31b3ed0d984ded755d07dcb9b3.tar.gz trackermap-server-e816b0e9f3023f31b3ed0d984ded755d07dcb9b3.tar.bz2 trackermap-server-e816b0e9f3023f31b3ed0d984ded755d07dcb9b3.zip |
Merge pull request #1951 from Abyss777/master
Use unix line ending for all platforms
-rw-r--r-- | checkstyle.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/checkstyle.xml b/checkstyle.xml index 79967e71a..14cfd1d13 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -9,7 +9,9 @@ <!-- Checks whether files end with a new line. --> <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile --> - <module name="NewlineAtEndOfFile"/> + <module name="NewlineAtEndOfFile"> + <property name="lineSeparator" value="lf" /> + </module> <!-- Checks that property files contain the same keys. --> <!-- See http://checkstyle.sf.net/config_misc.html#Translation --> |