From 26e71cc2ac996a31157cb829c06e44b060b33241 Mon Sep 17 00:00:00 2001 From: Artem Akymenko Date: Sun, 12 Jul 2026 13:18:48 +0000 Subject: [PATCH] chore: add .gitattributes for consistent LF line endings - Add .gitattributes with text=auto eol=lf for all text file types - Ensures consistent line endings across platforms - Prevents future CRLF/LF diffs in pull requests --- .gitattributes | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..be8b530 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,15 @@ +*.py text eol=lf +*.md text eol=lf +*.yml text eol=lf +*.yaml text eol=lf +*.toml text eol=lf +*.json text eol=lf +*.txt text eol=lf +*.html text eol=lf +*.css text eol=lf +*.js text eol=lf +*.sh text eol=lf +*.cfg text eol=lf +*.ini text eol=lf +*.svg text eol=lf +*.j2 text eol=lf