24 lines
818 B
Plaintext
24 lines
818 B
Plaintext
# Force LF line endings for all shell scripts and Docker-mounted files.
|
|
# Windows Git's core.autocrlf converts LF→CRLF on checkout, which breaks
|
|
# shell shebangs inside Linux Docker containers (kernel reads #!/bin/sh\r
|
|
# and fails with "no such file or directory").
|
|
*.sh text eol=lf
|
|
*.bash text eol=lf
|
|
ods/ods-cli text eol=lf
|
|
Dockerfile* text eol=lf
|
|
docker-entrypoint* text eol=lf
|
|
*.yaml text eol=lf
|
|
*.yml text eol=lf
|
|
*.json text eol=lf
|
|
*.env text eol=lf
|
|
|
|
# PowerShell scripts can use CRLF (native Windows)
|
|
*.ps1 text eol=crlf
|
|
*.psm1 text eol=crlf
|
|
*.psd1 text eol=crlf
|
|
|
|
# Captured tool-output fixtures preserve real upstream formatting
|
|
# (column padding, trailing whitespace from rocm-smi/amd-smi/etc).
|
|
# Don't let `git diff --check` flag intentional whitespace as an error.
|
|
ods/tests/fixtures/amd/*.txt -whitespace
|