-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy path.gitattributes
More file actions
27 lines (27 loc) · 859 Bytes
/
Copy path.gitattributes
File metadata and controls
27 lines (27 loc) · 859 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
# Force LF line endings for all text sources, on every platform.
#
# Borrowed from the DeepSeek-Reasonix Windows-support playbook: Windows git
# defaults to core.autocrlf=true, so without this a Windows checkout (dev
# machine or CI runner) materializes CRLF — breaking bash scripts
# (install.sh), tests that compare "\n"-joined strings against file
# contents, and formatter checks. PowerShell scripts are the one deliberate
# exception: PS 5.1 wants CRLF, and .ps1 files are authored for Windows.
.gitattributes text eol=lf
.gitignore text eol=lf
*.cfg text eol=lf
*.css text eol=lf
*.html text eol=lf
*.js text eol=lf
*.json text eol=lf
*.jsx text eol=lf
*.md text eol=lf
*.mjs text eol=lf
*.py text eol=lf
*.sh text eol=lf
*.toml text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.txt text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.ps1 text eol=crlf