-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitattributes
More file actions
64 lines (57 loc) · 1.32 KB
/
.gitattributes
File metadata and controls
64 lines (57 loc) · 1.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
# Set default behavior to automatically normalize line endings
* text=auto
# Explicitly declare text files that should have normalized line endings
*.py text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.toml text eol=lf
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
# Denote all files that are truly binary and should not be modified
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.woff binary
*.woff2 binary
*.eot binary
*.ttf binary
*.mp4 binary
*.webm binary
*.webp binary
# Binary executables
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# Python bytecode
*.pyc binary
*.pyo binary
*.pyd binary
# Files that should be treated as large or binary for git operations
ipfs_kit_py/bin/** binary
bin/** binary
*.parquet binary
*.bin binary
*.zip binary
*.tar binary
*.gz binary
*.bz2 binary
*.xz binary
*.car binary
*.ipfs binary
# Documentation directories and git subdirectories should be handled separately
docs/ipfs-docs/** linguist-documentation
docs/libp2p_docs/** linguist-documentation
docs/ipfs_cluster/** linguist-documentation
docs/filesystem_spec/** linguist-documentation
docs/libp2p-universal-connectivity/** linguist-documentation
docs/lotus/** linguist-documentation
# Ensure shell scripts have Unix line endings
*.sh text eol=lf