-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
135 lines (125 loc) · 4.96 KB
/
.gitattributes
File metadata and controls
135 lines (125 loc) · 4.96 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# ============================================================================
# .gitattributes for glyph
# ============================================================================
# Default: auto-detect text and normalize to LF on commit.
* text=auto eol=lf
# ----------------------------------------------------------------------------
# C / C++ source
# ----------------------------------------------------------------------------
*.c text eol=lf diff=cpp
*.cc text eol=lf diff=cpp
*.cpp text eol=lf diff=cpp
*.cxx text eol=lf diff=cpp
*.h text eol=lf diff=cpp
*.hh text eol=lf diff=cpp
*.hpp text eol=lf diff=cpp
*.hxx text eol=lf diff=cpp
*.inl text eol=lf diff=cpp
*.ipp text eol=lf diff=cpp
*.tcc text eol=lf diff=cpp
# ----------------------------------------------------------------------------
# Build system
# ----------------------------------------------------------------------------
CMakeLists.txt text eol=lf
*.cmake text eol=lf
*.cmake.in text eol=lf
CMakePresets.json text eol=lf
*.clang-format text eol=lf
*.clang-tidy text eol=lf
.clang-format text eol=lf
.clang-tidy text eol=lf
.clangd text eol=lf
.editorconfig text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.ini text
*.cfg text
*.md text diff=markdown
*.xml text
*.txt text
vcpkg.json text eol=lf
LICENSE text
Doxyfile text
Doxyfile.in text
.gitattributes text eol=lf
.gitignore text eol=lf
# ----------------------------------------------------------------------------
# Scripts
# ----------------------------------------------------------------------------
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.sh text eol=lf
*.bash text eol=lf
*.py text eol=lf
# ----------------------------------------------------------------------------
# Archives
# ----------------------------------------------------------------------------
*.7z binary
*.bz2 binary
*.gz binary
*.rar binary
*.tar binary
*.tgz binary
*.xz binary
*.zip binary
# ----------------------------------------------------------------------------
# Compiled
# ----------------------------------------------------------------------------
*.a binary
*.dll binary
*.exe binary
*.exp binary
*.idb binary
*.ilk binary
*.lib binary
*.o binary
*.obj binary
*.pdb binary
*.so binary
*.so.* binary
*.dylib binary
# ----------------------------------------------------------------------------
# Fonts
# ----------------------------------------------------------------------------
*.eot binary
*.otf binary
*.ttc binary
*.ttf binary
*.woff binary
*.woff2 binary
# ----------------------------------------------------------------------------
# Images / media
# ----------------------------------------------------------------------------
*.bmp binary
*.dds binary
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.psd binary
*.svg text eol=lf
*.tga binary
*.webp binary
# ----------------------------------------------------------------------------
# Skyrim / Bethesda formats
# ----------------------------------------------------------------------------
*.bsa binary
*.esl binary
*.esm binary
*.esp binary
*.nif binary
*.pex binary
# ----------------------------------------------------------------------------
# GitHub language statistics
# ----------------------------------------------------------------------------
external/** linguist-vendored
build/** linguist-generated
build-cdb/** linguist-generated
docs/** linguist-generated
site/** linguist-generated
scripts/** linguist-documentation