mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-29 02:07:42 +00:00
e0e6396acb
- Convert .github/scanner.sh from CRLF to LF line endings - Add .gitattributes to enforce LF for *.sh files - Update .editorconfig with explicit shell script settings - Prevents line ending issues on Linux/WSL execution
24 lines
414 B
Plaintext
24 lines
414 B
Plaintext
# Git Line Ending Configuration for QuanTAlib
|
|
|
|
# Default behavior: let Git normalize line endings to LF on checkin
|
|
* text=auto
|
|
|
|
# Shell scripts must always use LF
|
|
*.sh text eol=lf
|
|
|
|
# Windows-specific files use CRLF
|
|
*.bat text eol=crlf
|
|
*.cmd text eol=crlf
|
|
*.ps1 text eol=crlf
|
|
|
|
# Binary files
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.ico binary
|
|
*.dll binary
|
|
*.exe binary
|
|
*.snupkg binary
|
|
*.nupkg binary
|