-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
46 lines (40 loc) · 1005 Bytes
/
.gitattributes
File metadata and controls
46 lines (40 loc) · 1005 Bytes
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
# Auto-detect text files and normalize line endings
* text=auto
# Explicit text files
*.md text diff=markdown
*.mdc text diff=markdown
*.json text
*.yml text
*.yaml text
LICENSE text
Makefile text
# Force LF on files that break with CRLF
*.sh text eol=lf
.githooks/* text eol=lf
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
*.pdf binary
*.zip binary
*.gz binary
*.tar binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# Symlinks
CLAUDE.md symlink
# GitHub language statistics
*.md linguist-documentation
*.mdc linguist-vendored
LICENSE linguist-documentation
# Exclude repo scaffolding from archives
.cursor/ export-ignore
.githooks/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
Makefile export-ignore