-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
81 lines (69 loc) · 1 KB
/
.gitattributes
File metadata and controls
81 lines (69 loc) · 1 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
# Auto detect text files and perform LF normalization
* text=auto eol=lf
# Rust files
*.rs text diff=rust
Cargo.toml text
Cargo.lock text
# Docker files
Dockerfile text
*.dockerfile text
docker-compose*.yml text
.dockerignore text
# Documentation
*.md text diff=markdown
*.txt text
*.rst text
LICENSE text
# Config files
*.json text
*.toml text
*.yml text
*.yaml text
*.ini text
*.cfg text
*.conf text
# Web files
*.html text diff=html
*.html.j2 text diff=html
*.css text diff=css
*.js text
*.jsx text
*.ts text
*.tsx text
*.vue text
# SQL files
*.sql text
# Binary files
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary
*.pyd binary
*.pyo binary
*.pdb binary
# Image files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
# Font files
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
# Archive files
*.zip binary
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.rar binary
# Executables
*.exe binary
*.dll binary
*.so binary
*.dylib binary
.env text=utf-8 eol=lf