-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
102 lines (91 loc) · 3.31 KB
/
Copy path.gitattributes
File metadata and controls
102 lines (91 loc) · 3.31 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
99
100
101
102
###############################################################################
# Default behavior
###############################################################################
* text=auto
###############################################################################
# Source Code (force LF for portability across Windows/Linux/HPC)
###############################################################################
*.c text eol=lf diff=c
*.h text eol=lf diff=c
*.cpp text eol=lf diff=cpp
*.hpp text eol=lf diff=cpp
*.s text eol=lf
*.S text eol=lf
*.ld text eol=lf diff
*.cmake text eol=lf
CMakeLists.txt text eol=lf
###############################################################################
# Python
###############################################################################
*.py text eol=lf diff=python
###############################################################################
# STM32 / Embedded configuration
###############################################################################
*.ioc text eol=lf merge
*.cfg text eol=lf
*.ini text eol=lf
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
###############################################################################
# Keil / Embedded IDE project files
###############################################################################
*.uvprojx text
*.uvoptx text
*.uvgui.* text
*.project text
*.cproject text
###############################################################################
# Documentation / research files
###############################################################################
*.md text diff=markdown
*.txt text
*.tex text diff=tex
*.bib text
*.csv text
*.tsv text
###############################################################################
# Jupyter notebooks
###############################################################################
*.ipynb text diff
###############################################################################
# Images (binary)
###############################################################################
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.bmp binary
*.tiff binary
*.svg text
###############################################################################
# Firmware binaries
###############################################################################
*.bin binary
*.hex binary
*.elf binary
*.map binary
*.srec binary
###############################################################################
# Compiled libraries
###############################################################################
*.a binary
*.lib binary
*.so binary
*.dll binary
###############################################################################
# Archives
###############################################################################
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.rar binary
# ###############################################################################
# # MATLAB / data files (common in research repos)
# ###############################################################################
*.mat binary
*.npy binary
*.npz binary
*.h5 binary
*.hdf5 binary