From 5300dc484e41560e70294a6c7c58135e82e86633 Mon Sep 17 00:00:00 2001 From: Paulo Aboim Pinto Date: Sun, 7 Jun 2026 02:44:08 +0200 Subject: [PATCH] chore: enforce lf for rust sources --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitattributes b/.gitattributes index 099e7f8e..6e639fdb 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,5 +3,11 @@ # 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