-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
46 lines (37 loc) · 943 Bytes
/
.gitattributes
File metadata and controls
46 lines (37 loc) · 943 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Auto detect text files and normalize line endings to LF
* text=auto eol=lf
# Python files must use LF line endings
*.py text eol=lf
*.pyi text eol=lf
# Configuration files
*.toml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.md text eol=lf
*.rst text eol=lf
*.txt text eol=lf
# Shell scripts
*.sh text eol=lf
# Windows batch files (keep CRLF)
*.bat text eol=crlf
*.cmd text eol=crlf
# Binary files (no conversion)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.whl binary
*.gz binary
*.zip binary
# Jupyter notebooks
*.ipynb text eol=lf
# VCR cassettes
*.json text eol=lf
# Git LFS tracking for large VCR cassettes
tests/fixtures/vcr/**/*.yaml filter=lfs diff=lfs merge=lfs -text
# VCR metadata sidecars are small governance payloads and must remain readable
# text for architecture tests and review diffs.
tests/fixtures/vcr/**/*_meta.yaml text eol=lf -filter -diff -merge