Files
dioxus/.gitattributes
Brock b94f8c6b5f chore: add .gitattributes for consistent line endings (#5385)
Normalize line endings to LF across all platforms. Without this,
Windows contributors get CRLF warnings on every checkout and test
run due to generated harness files.
2026-03-26 17:12:47 -07:00

29 lines
429 B
Plaintext

# Auto detect text files and normalize line endings to LF
* text=auto eol=lf
# Rust sources
*.rs text eol=lf
*.toml text eol=lf
*.lock text eol=lf
# Web assets
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.json text eol=lf
# Config
*.yml text eol=lf
*.yaml text eol=lf
*.md text eol=lf
*.sh text eol=lf
# Binary files
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.wasm binary
*.avif binary