You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Keep LF line endings in webroot assets files. Otherwise, building them under Windows would change the line endings to CLRF and cause changes without actually editing the source files.
**/wwwroot/**/*.jstexteol=lf
**/wwwroot/**/*.csstexteol=lf
# Shell scripts must keep LF endings. A CRLF checkout turns a script's shebang into `#!/bin/sh\r`, and a
# container that copies the script then fails to start because no interpreter by that name exists.
*.shtexteol=lf
# Vendored specification cassettes are verified against the SHA-256 of the upstream file recorded in their
# manifest. Line ending normalization would rewrite the bytes and break that check on Windows checkouts.