-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
46 lines (38 loc) · 996 Bytes
/
.gitattributes
File metadata and controls
46 lines (38 loc) · 996 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 eol=lf
# Rust source files
*.rs text eol=lf diff=rust
*.toml text eol=lf
# Lock files - text but don't diff by default (noisy)
Cargo.lock text eol=lf -diff
# Documentation
*.md text eol=lf diff=markdown
*.txt text eol=lf
# Configuration
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
# Shell scripts
*.sh text eol=lf diff=bash
justfile text eol=lf
# Windows batch files (keep CRLF)
*.bat text eol=crlf
*.cmd text eol=crlf
# GitHub Linguist overrides
# Exclude from language statistics
docs/** linguist-documentation
*.md linguist-documentation
# Export-ignore for release archives
.github export-ignore
.cargo export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
clippy.toml export-ignore
deny.toml export-ignore
mutants.toml export-ignore
rust-toolchain.toml export-ignore
rustfmt.toml export-ignore
justfile export-ignore
tests/** export-ignore
benches/** export-ignore