-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.gitattributes
More file actions
104 lines (85 loc) · 1.57 KB
/
Copy path.gitattributes
File metadata and controls
104 lines (85 loc) · 1.57 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
# SPDX-License-Identifier: MPL-2.0
# --- Global Settings ---
# Auto-detect text files and normalize line endings to LF on commit
* text=auto
# --- C++ Sources ---
*.cpp text diff=cpp
*.c text diff=cpp
*.h text diff=cpp
*.hpp text diff=cpp
*.inl text diff=cpp
# --- Objective-C++ ---
*.mm text diff=objcpp
*.m text diff=objc
# --- Swift ---
*.swift text diff=swift
# --- Shaders ---
*.vert text
*.frag text
*.comp text
*.geom text
*.tesc text
*.tese text
*.glsl text
*.hlsl text
*.metal text
# Compiled shaders (binary)
*.spv binary
*.metallib binary
# --- Build Scripts ---
CMakeLists.txt text
*.cmake text
# Scripts (Force LF for shell scripts)
*.sh text eol=lf
# Windows Scripts (Force CRLF)
*.bat text eol=crlf
*.cmd text eol=crlf
# --- Assets (Binary) ---
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.tga binary
*.ico binary
*.bmp binary
*.psd binary
# Audio
*.wav binary
*.ogg binary
*.mp3 binary
# 3D Models (binary)
*.glb binary
*.fbx binary
*.blend binary
# 3D Models (text)
*.gltf text
*.mtl text
# Archives
*.zip binary
*.tar binary
*.gz binary
*.7z binary
# Fonts
*.ttf binary
*.otf binary
# --- Xcode Project Files ---
*.pbxproj text
*.xcscheme text
*.xcsettings text
*.xcworkspacedata text
*.xcuserstate binary
*.storyboard text
*.xib text
# --- Apple Property Lists ---
*.plist text
# --- Data & Config ---
*.json text
*.toml text
*.yaml text
*.yml text
*.md text diff=markdown
# --- Configuration ---
.editorconfig text
.clang-format text
.gitignore text
.gitattributes text