-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
98 lines (79 loc) · 2.32 KB
/
Copy path.gitattributes
File metadata and controls
98 lines (79 loc) · 2.32 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Git attributes for AIRS Data Analysis Project
# ============================================================================
# Line Ending Normalization
# ============================================================================
# Auto-detect text files and normalize line endings to LF
* text=auto
# Explicitly declare text files
*.md text
*.txt text
*.csv text
*.json text
*.yml text
*.yaml text
# Python
*.py text
*.ipynb text
# R
*.R text
*.Rmd text
# Documentation
*.tex text
LICENSE text
README text
# ============================================================================
# Binary Files
# ============================================================================
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
# Data files
*.sav binary
*.rds binary
*.RData binary
*.rda binary
*.pkl binary
*.pickle binary
# Documents
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
# Archives
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.rar binary
# ============================================================================
# Jupyter Notebooks
# ============================================================================
# Keep notebook outputs for reproducibility but handle merge conflicts
*.ipynb merge=union
# ============================================================================
# Language Statistics
# ============================================================================
# Ensure GitHub language detection is accurate
*.ipynb linguist-detectable=true
*.R linguist-detectable=true
*.Rmd linguist-detectable=true
# Exclude generated files from language stats
AIRS_Analysis_files/** linguist-generated=true
# Exclude Alex architecture from language stats (framework, not project code)
.github/copilot-instructions.md linguist-documentation=true
.github/instructions/** linguist-documentation=true
.github/prompts/** linguist-documentation=true
domain-knowledge/** linguist-documentation=true
scripts/neural-dream.ps1 linguist-vendored=true
scripts/validate-synapses.ps1 linguist-vendored=true
# ============================================================================
# Diff Settings
# ============================================================================
# Improve diff display for specific file types
*.ipynb diff=jupyternotebook
*.csv diff=csv