Preserve CRLF line endings in .bat files

This is specifically for the gradlew.bat file generated by the `gradle
wrapper` command. Typically, this file should never be edited, but just
in case it is, this configuration will preserve its original CRLF line
endings.
This commit is contained in:
Chris Beams 2018-11-20 14:15:01 +01:00
parent fa5c402af5
commit 9f4f5c48e1
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73

View file

@ -9,6 +9,9 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.bat]
end_of_line = crlf
[build.gradle]
continuation_indent_size = 4