forked from enthali/esp32-distance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
50 lines (45 loc) · 884 Bytes
/
.gitattributes
File metadata and controls
50 lines (45 loc) · 884 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
# Line ending normalization for cross-platform development
* text=auto
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout
*.c text
*.h text
*.cpp text
*.hpp text
*.py text
*.js text
*.html text
*.css text
*.md text
*.txt text
*.yml text
*.yaml text
*.json text
*.cmake text
*.sh text eol=lf
# PowerShell scripts should use CRLF on Windows
*.ps1 text eol=crlf
*.bat text eol=crlf
# Declare files that will always have CRLF line endings on checkout
*.sln text eol=crlf
# Declare files that will always have LF line endings on checkout
*.dsp text eol=lf
*.dsw text eol=lf
Makefile text eol=lf
# Binary files
*.bin binary
*.elf binary
*.o binary
*.a binary
*.so binary
*.dll binary
*.exe binary
*.img binary
*.ico binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.pdf binary
*.zip binary
*.tar.gz binary