-
Notifications
You must be signed in to change notification settings - Fork 16
/
.gitattributes
42 lines (40 loc) · 1.09 KB
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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
# Files to exclude from asset-lib download.
/addons/gd-plug export-ignore
/default_env.tres export-ignore
/benchmark export-ignore
/docs export-ignore
/.env.example export-ignore
/examples export-ignore
/export_presets.cfg export-ignore
/.gitattributes export-ignore
/.github export-ignore
/.gitignore export-ignore
/.gitmodules export-ignore
/icon.png export-ignore
/icon.png.import export-ignore
/.import export-ignore
/Justfile export-ignore
/LICENSE.md export-ignore
/misc export-ignore
/plug.gd export-ignore
/.plugged export-ignore
/.pre-commit-config.yaml export-ignore
/project.godot export-ignore
/README.md export-ignore
/requirements.txt export-ignore
/test export-ignore
/themes export-ignore