-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
60 lines (53 loc) · 917 Bytes
/
.gitattributes
File metadata and controls
60 lines (53 loc) · 917 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Auto detect text files and normalize line endings to LF
* text=auto
# Source code
*.cpp text eol=lf
*.c text eol=lf
*.h text eol=lf
*.hpp text eol=lf
*.rs text eol=lf
*.toml text eol=lf
*.ino text eol=lf
# Shell scripts
*.sh text eol=lf
*.bash text eol=lf
# Config files
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.xml text eol=lf
*.toml text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
Makefile text eol=lf
# Documentation
*.md text eol=lf
*.txt text eol=lf
LICENSE text eol=lf
README text eol=lf
# Binary files
*.bin binary
*.elf binary
*.hex binary
*.uf2 binary
*.zip binary
*.tar binary
*.gz binary
*.o binary
*.a binary
*.so binary
*.dll binary
*.exe binary
*.dylib binary
# Media files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.xcf binary
# KiCAD files
*.kicad_sch text eol=lf
*.kicad_pro text eol=lf
*.kicad_prl text eol=lf
*.kicad_pcb text eol=lf