-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
30 lines (27 loc) 路 880 Bytes
/
Copy path.gitattributes
File metadata and controls
30 lines (27 loc) 路 880 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
# Saltos de l铆nea normalizados a LF en todo el repositorio.
#
# Motivo concreto: `papers/manifest.json` guarda un hash por artefacto. Si el
# checkout entrega CRLF en Windows y LF en el CI de Linux, el mismo contenido
# produce dos hashes distintos y la verificaci贸n pasa en un sistema y falla en
# otro. Aqu铆 se fija el formato en disco; en `ai_evolution.papers.sha256_of` se
# normaliza adem谩s el contenido antes de hashear, por si alguien clona con otra
# configuraci贸n.
* text=auto eol=lf
# Formatos donde el salto de l铆nea es parte del contrato de la herramienta
*.py text eol=lf
*.ipynb text eol=lf
*.md text eol=lf
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.sh text eol=lf
# Binarios: nunca convertir
*.pdf binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pptx binary
*.zip binary
*.exe binary