Without this change, the git client will auto-convert the line endings to CRLF, which leads to hash mismatches for unpacked maps, which would be especially bad if we were going to build the Windows package on a Windows system. Adds the same rule for .lua files as well, in preparation for a change that will make those contribute to the map hash.
12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
# Enforce LF normalization on Windows
|
|
*.yaml eol=lf
|
|
*.lua eol=lf
|
|
* text=lf
|
|
|
|
# Custom for Visual Studio
|
|
*.cs diff=csharp
|
|
*.sln merge=union
|
|
*.csproj merge=union
|
|
*.vbproj merge=union
|
|
*.fsproj merge=union
|
|
*.dbproj merge=union |