-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
42 lines (35 loc) · 886 Bytes
/
.gitattributes
File metadata and controls
42 lines (35 loc) · 886 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
# EVA Data Model - Git Attributes
# Ensures consistent line endings and file handling across Windows/Linux/Mac
# Auto-detect text files and normalize line endings to LF
* text=auto eol=lf
# Source code - always LF
*.py text eol=lf
*.ps1 text eol=lf
*.sh text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Data files - always LF, mark as linguist-generated (no diffs in GitHub)
*.json text eol=lf
model/*.json linguist-generated=true
schema/*.json linguist-documentation=true
# Config files
.env* text eol=lf
.gitignore text eol=lf
Dockerfile text eol=lf
# Images (binary)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
# Docker images (binary)
*.tar binary
*.gz binary
*.zip binary
# Exclude test/temporary files from GitHub export
.hypothesis/** export-ignore
__pycache__/** export-ignore
*.log export-ignore
tmp-* export-ignore