-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
63 lines (58 loc) · 2.51 KB
/
.gitattributes
File metadata and controls
63 lines (58 loc) · 2.51 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
###############################################################################
# CONFIGURACIÓN GLOBAL
###############################################################################
# Detectar archivos de texto automáticamente y normalizarlos a LF
* text=auto
###############################################################################
# API - PYTHON / DJANGO (OBLIGATORIO LF)
###############################################################################
# Forzamos LF en código y migraciones para evitar errores en servidores Linux
*.py text eol=lf
# Requisitos y configuración de entorno
*.txt text eol=lf
requirements/*.txt text eol=lf
# Logs de la aplicación (vistos en tu estructura en api/callcentersite/logs/)
api/callcentersite/logs/*.log text eol=lf
*.log text eol=lf
###############################################################################
# UI - JAVASCRIPT / REACT / TYPESCRIPT
###############################################################################
*.js text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.json text eol=lf
*.css text eol=lf
*.html text eol=lf
# Archivos de mocks (vistos en ui/src/mocks/)
ui/src/mocks/*.json text eol=lf
###############################################################################
# CONFIGURACIÓN Y DESPLIEGUE (INFRAESTRUCTURA)
###############################################################################
*.yaml text eol=lf
*.yml text eol=lf
*.toml text eol=lf
Makefile text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
.markdownlint.json text eol=lf
# Scripts de shell (vital que sean LF para Linux)
*.sh text eol=lf
create-pr.sh text eol=lf
###############################################################################
# DOCUMENTACIÓN
###############################################################################
*.md text eol=lf
CHANGELOG.md text eol=lf
README.md text eol=lf
###############################################################################
# ARCHIVOS BINARIOS (NO NORMALIZAR)
###############################################################################
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.woff binary
*.woff2 binary