godot-xterm/.gitattributes
Leroy Hopson 0973aad7e6
Update .gitattributes
- GitHub language detection.
- Normalize EOL for text files.

Based on <https://github.com/godotengine/godot/blob/master/.gitattributes>.
2021-07-18 14:21:47 +07:00

15 lines
408 B
Text

# Properly detect languages on Github.
*.h linguist-language=cpp
*.gd linguist-language=GDScript
# Normalize EOL for all files that Git considers text files.
* text=auto eol=lf
# The above only works properly for Git 2.10+, so for older versions
# we need to manually list the binary files we don't want modified.
*.dll binary
*.dylib binary
*.png binary
*.so binary
*.ttf binary
*.wasm binary
*.wav binary