forked from DaoyuanLi2816/mini-verl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
35 lines (33 loc) · 1.08 KB
/
Copy path.gitattributes
File metadata and controls
35 lines (33 loc) · 1.08 KB
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
31
32
33
34
35
# Normalize every text file to LF in the repository and in the working tree.
#
# This is not cosmetic. `.github/workflows/ci.yml` regenerates
# benchmarks/schema/benchmark-result.schema.json with `miniverl schema` and
# byte-diffs it against the committed copy to prove the two cannot drift. That
# check compares bytes, so a file authored on Windows with CRLF can never match
# output generated on a Linux runner with LF, and the job fails for a reason
# that has nothing to do with the schema. Pinning LF everywhere makes generated
# files reproducible across platforms.
* text=auto eol=lf
# Keep the checked-in artifacts explicit rather than relying on detection.
*.py text eol=lf
*.pyi text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.json text eol=lf
*.jsonl text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.toml text eol=lf
*.cfg text eol=lf
*.j2 text eol=lf
*.svg text eol=lf
*.cff text eol=lf
# Anything genuinely binary must never be touched.
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.pdf binary
*.whl binary
*.gz binary
*.safetensors binary