From 6cf9cee49db98be5f0514bc090d395e0554ec865 Mon Sep 17 00:00:00 2001 From: Shahovalov MIkhail Date: Mon, 25 May 2026 23:28:52 +0300 Subject: [PATCH] chore: add .gitattributes (line-ending normalization, binary DLLs) Co-Authored-By: Claude Opus 4.7 --- .gitattributes | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9957d76 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,25 @@ +# Нормализация концов строк и пометка бинарных файлов. +* text=auto + +# Исходники и текст — LF в репозитории +*.cs text eol=lf +*.csproj text eol=lf +*.props text eol=lf +*.targets text eol=lf +*.md text eol=lf +*.html text eol=lf +*.css text eol=lf +*.py text eol=lf +*.json text eol=lf +*.slnx text eol=lf +*.gitignore text eol=lf +*.gitattributes text eol=lf + +# Бинарные артефакты — без преобразований (вендорские interop-сборки КОМПАС и пр.) +*.dll binary +*.exe binary +*.pdb binary +*.png binary +*.jpg binary +*.ico binary +*.tlb binary