mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-20 21:31:49 +03:00
43 lines
1.7 KiB
Plaintext
43 lines
1.7 KiB
Plaintext
# Auto detect text files and perform LF normalization
|
|
* text=auto
|
|
|
|
# Prevent line ending normalization for ANSI files,
|
|
# since it's important to distinguish carriage return and line feed characters,
|
|
# and either may be used without the other.
|
|
# To visualize ANSI control codes when diffing, first check that `cat --show-all` is supported,
|
|
# then run `git config --local "diff.cat-show-all.textconv" "cat --show-all"`
|
|
# which will add a [diff "cat-show-all"] section to the local .git/config file.
|
|
# This might not affect your Git GUI of choice, but it will affect Git's command line.
|
|
*.ans binary diff=cat-show-all
|
|
*.ANS binary diff=cat-show-all
|
|
*.nfo binary diff=cat-show-all
|
|
*.NFO binary diff=cat-show-all
|
|
|
|
# Localization data shouldn't affect the language statistics on GitHub.
|
|
# Note 1: This also makes the files not show in diffs on GitHub by default, which I don't necessarily want,
|
|
# but hopefully these files won't be changing much, and I'll put new localization data in a separate folder.
|
|
# Note 2: This shouldn't match files directly under the localization folder, which is actually what I want,
|
|
# since there is some python code in there! I probably should separate the data from the modules though.
|
|
# localization/* linguist-generated=... # Don't want to exclude python files!
|
|
localization/**/* linguist-generated=true
|
|
|
|
# Custom for Visual Studio
|
|
*.cs diff=csharp
|
|
*.sln merge=union
|
|
*.csproj merge=union
|
|
*.vbproj merge=union
|
|
*.fsproj merge=union
|
|
*.dbproj merge=union
|
|
|
|
# Standard to msysgit
|
|
*.doc diff=astextplain
|
|
*.DOC diff=astextplain
|
|
*.docx diff=astextplain
|
|
*.DOCX diff=astextplain
|
|
*.dot diff=astextplain
|
|
*.DOT diff=astextplain
|
|
*.pdf diff=astextplain
|
|
*.PDF diff=astextplain
|
|
*.rtf diff=astextplain
|
|
*.RTF diff=astextplain
|