-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.gitattributes
77 lines (56 loc) · 2.08 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
# The above will handle all files NOT found below
# These files are text and should be normalized (Convert crlf => lf)
.gitattributes text
.gitignore text
*.md text diff=Markdown
*.cs text diff=CSharp
*.cpp text diff=C++
*.hpp text diff=C++
*.h text diff=C
*.c text diff=C
*.rc text diff=Assembly
CMakeLists.txt text diff=CMake
# Exclude files from exporting
.gitattributes export-ignore
.gitignore export-ignore
# Enable syntax highlighting for files with extensions.
*.md linguist-language=Markdown
*.md linguist-detectable=true
*.md linguist-documentation=false
*.cs linguist-language=CSharp
*.cs linguist-detectable=true
*.cs linguist-documentation=false
*.cpp linguist-language=C++
*.cpp linguist-detectable=true
*.cpp linguist-documentation=false
*.hpp linguist-language=C++
*.hpp linguist-detectable=true
*.hpp linguist-documentation=false
*.h linguist-language=C
*.h linguist-detectable=true
*.h linguist-documentation=false
*.c linguist-language=C
*.c linguist-detectable=true
*.c linguist-documentation=false
*.rc linguist-language=Assembly
*.rc linguist-detectable=true
*.rc linguist-documentation=false
CMakeLists.txt linguist-language=CMake
CMakeLists.txt linguist-detectable=true
CMakeLists.txt linguist-documentation=false
#Ignore dirs/files
DragonBurn/OS-ImGui/* linguist-vendored
DragonBurn/OS-ImGui/imgui/* linguist-vendored
DragonBurn/OS-ImGui/stb/* linguist-vendored
DragonBurn/Libs/* linguist-vendored
DragonBurn/Libs/json/* linguist-vendored
DragonBurn/Libs/curl/include/curl/* linguist-vendored
DragonBurn/Libs/zlib/include/* linguist-vendored
DragonBurn/Resources/Sounds.hpp linguist-vendored
DragonBurn/Resources/Images.hpp linguist-vendored
DragonBurn/Resources/WeaponIcon.hpp linguist-vendored
DragonBurn/Resources/Font.hpp linguist-vendored
DragonBurn/Core/GUI.h linguist-vendored