14 lines
502 B
Plaintext
14 lines
502 B
Plaintext
# Ensure LF line endings for files consumed by include_str!() on all platforms.
|
|
# include_str!() preserves raw bytes; CRLF breaks substring assertions and
|
|
# produces different compiled binaries on Windows vs Linux/macOS.
|
|
crates/tui/src/prompts/*.md text eol=lf
|
|
|
|
# Rustfmt writes LF; keep Rust sources stable across Windows/Linux/macOS.
|
|
*.rs text eol=lf
|
|
|
|
# Keep repository attributes themselves stable on every platform.
|
|
.gitattributes text eol=lf
|
|
|
|
# Everything else auto-detects (default).
|
|
* text=auto
|