-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitattributes
More file actions
142 lines (128 loc) · 4.92 KB
/
Copy path.gitattributes
File metadata and controls
142 lines (128 loc) · 4.92 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
136
137
138
139
140
141
142
# ============================================================================
# .gitattributes for seal
# ============================================================================
# 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.md text diff=markdown
Doxyfile text
Doxyfile.in text
.gitattributes text eol=lf
.gitignore text eol=lf
# ----------------------------------------------------------------------------
# Qt / QML
# ----------------------------------------------------------------------------
*.qml text
*.qrc text
qt.conf text
# ----------------------------------------------------------------------------
# Scripts
# ----------------------------------------------------------------------------
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
*.sh text eol=lf
*.py text eol=lf
# ----------------------------------------------------------------------------
# Generated
# ----------------------------------------------------------------------------
docs/** linguist-generated=true
site/** linguist-generated=true
build/** linguist-generated=true -diff
# The mkdocs theme override under docs/ is hand-authored, not generated.
docs/main.html -linguist-generated linguist-documentation=true
# Third-party and assets are not authored here.
assets/** linguist-vendored=true
# ----------------------------------------------------------------------------
# Binary
# ----------------------------------------------------------------------------
*.exe binary
*.dll binary
*.lib binary
*.obj binary
*.o binary
*.a binary
*.so binary
*.dylib binary
*.pdb binary
*.exp binary
*.ilk binary
*.idb binary
*.res binary
*.bin binary
# Images and design source
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.bmp binary
*.ico binary
*.icns binary
*.tif binary
*.tiff binary
*.webp binary
*.psd binary
*.ai binary
*.svg text
# Fonts
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
*.eot binary
# Archives
*.zip binary
*.tar binary
*.tar.gz binary
*.tgz binary
*.tar.bz2 binary
*.tar.xz binary
*.7z binary
*.rar binary
*.gz binary
*.bz2 binary
*.xz binary
# Documents
*.pdf binary
*.docx binary
*.xlsx binary
# ----------------------------------------------------------------------------
# GitHub linguist hints
# ----------------------------------------------------------------------------
*.qml linguist-language=QML