-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
33 lines (26 loc) · 976 Bytes
/
.gitattributes
File metadata and controls
33 lines (26 loc) · 976 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
# =============================================================================
# ReasonKit Core Git Attributes
# =============================================================================
# Git LFS tracking for large binary assets in brand/
# See: https://git-lfs.github.com/
# Brand Assets - PNG Images (often large)
brand/**/*.png filter=lfs diff=lfs merge=lfs -text
# Brand Assets - JPEG Images
brand/**/*.jpg filter=lfs diff=lfs merge=lfs -text
brand/**/*.jpeg filter=lfs diff=lfs merge=lfs -text
# README Assets - PNG Images
brand/readme/**/*.png filter=lfs diff=lfs merge=lfs -text
# Banners - PNG Images (typically large)
brand/banners/**/*.png filter=lfs diff=lfs merge=lfs -text
# Keep SVGs as text (small, diffable)
brand/**/*.svg text
# Ensure proper line endings for code
*.rs text eol=lf
*.toml text eol=lf
*.md text eol=lf
*.sh text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
# Binary files that should not be diffed
*.lock binary