Files
anvil/.gitattributes
Eric Ratliff 578b5f02c0
Some checks failed
CI / Test (Linux) (push) Has been cancelled
CI / Test (Windows MSVC) (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
Fixed line endings and improved script to work with Windows endings just in case
2026-02-22 10:03:39 -06:00

28 lines
491 B
Plaintext

# Auto-detect text files and normalize line endings
* text=auto
# Rust source
*.rs text diff=rust
*.toml text eol=lf
# Shell scripts must keep LF even on Windows
*.sh text eol=lf
# Batch scripts must keep CRLF
*.bat text eol=crlf
# C/C++ templates
*.h text
*.cpp text
*.ino text
# Documentation
*.md text diff=markdown
# Engineering documents -- binary, do not diff or merge
docs/*.docx binary
docs/*.xlsx binary
# Binary / generated -- do not diff
Cargo.lock linguist-generated=true