# Git 行尾符规范化
# 统一 CRLF（Windows 原生项目）

# 源码文本文件
*.ts        text eol=crlf
*.tsx       text eol=crlf
*.js        text eol=crlf
*.json      text eol=crlf
*.html      text eol=crlf
*.css       text eol=crlf
*.md        text eol=crlf
*.rs        text eol=crlf
*.toml      text eol=crlf
*.yml       text eol=crlf
*.yaml      text eol=crlf
*.svg       text eol=crlf
*.txt       text eol=crlf
*.editorconfig text eol=crlf
*.gitattributes text eol=crlf
*.gitignore text eol=crlf
LICENSE     text eol=crlf

# 二进制文件
*.png       binary
*.jpg       binary
*.jpeg      binary
*.gif       binary
*.ico       binary
*.pdf       binary
*.dll       binary
*.exe       binary
*.nsis      binary
