19 lines
379 B
Plaintext
19 lines
379 B
Plaintext
# Auto detect text files and perform LF normalization
|
|
* text=auto
|
|
|
|
# Force bash scripts to use LF
|
|
*.sh text eol=lf
|
|
|
|
# Force batch files to use CRLF
|
|
*.bat text eol=crlf
|
|
|
|
# Force specific file types to use LF
|
|
*.json text eol=lf
|
|
*.yml text eol=lf
|
|
*.yaml text eol=lf
|
|
*.md text eol=lf
|
|
*.txt text eol=lf
|
|
|
|
# Force specific file types to use CRLF
|
|
*.cmd text eol=crlf
|
|
*.ps1 text eol=crlf |