mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
0973aad7e6
- GitHub language detection. - Normalize EOL for text files. Based on <https://github.com/godotengine/godot/blob/master/.gitattributes>.
15 lines
408 B
Text
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
|