-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
39 lines (32 loc) · 726 Bytes
/
.gitattributes
File metadata and controls
39 lines (32 loc) · 726 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
# Git attributes for better blame and diff handling
# Mark Rust files for proper diff and blame handling
*.rs text eol=lf diff=rust
# Ignore formatting commits for blame (requires git 2.23+)
# This helps tools like SonarQube get better blame information
*.rs filter=format-ignore-blame
# TypeScript and JavaScript files
*.ts text eol=lf
*.tsx text eol=lf
*.js text eol=lf
*.jsx text eol=lf
# Configuration files
*.toml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
# Documentation
*.md text eol=lf
*.txt text eol=lf
# Scripts
*.sh text eol=lf
*.py text eol=lf
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary