-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
77 lines (67 loc) · 1.23 KB
/
Copy path.gitattributes
File metadata and controls
77 lines (67 loc) · 1.23 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
# Git Attributes for AlgebraicHashing
# Ensures consistent line endings and proper file handling across platforms
# Auto detect text files and perform LF normalization
* text=auto
# C++ source files
*.cpp text diff=cpp
*.hpp text diff=cpp
*.h text diff=cpp
*.c text diff=cpp
*.cc text diff=cpp
*.cxx text diff=cpp
# CMake files
*.cmake text
CMakeLists.txt text
# Configuration files
*.json text
*.yml text
*.yaml text
*.toml text
*.ini text
*.conf text
# Documentation
*.md text
*.txt text
*.rst text
# Scripts
*.sh text eol=lf
*.bat text eol=crlf
*.ps1 text eol=crlf
# Archives and binaries
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
*.a binary
*.lib binary
*.o binary
*.obj binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
# Fonts
*.woff binary
*.woff2 binary
*.eot binary
*.ttf binary
*.otf binary
# Export ignore - files that shouldn't be included in distribution
/.github export-ignore
/tests export-ignore
/build export-ignore
/.vscode export-ignore
/.idea export-ignore
/.clang-format export-ignore
/.clang-tidy export-ignore
/.codecov.yml export-ignore
/test_package export-ignore
REFACTORING_SUMMARY.md export-ignore
CLAUDE.md export-ignore