-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
30 lines (26 loc) · 753 Bytes
/
Copy path.gitattributes
File metadata and controls
30 lines (26 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Enforce LF line endings so Windows checkouts don't break bash scripts or
# leave stray \r in .env values. Applies to everything unless overridden below.
* text=auto eol=lf
# Bash scripts MUST be LF — Windows Git Bash + WSL both fail on CRLF shebangs.
*.sh text eol=lf
# Env and config files are parsed line-by-line; keep LF to avoid \r leaking
# into parsed values.
.env text eol=lf
.env.* text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Source files — LF matches the rest of the toolchain (Playwright, Node).
*.js text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.json text eol=lf
*.md text eol=lf
*.feature text eol=lf
# Binaries — never touch.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.zip binary