-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitattributes
More file actions
69 lines (58 loc) · 862 Bytes
/
.gitattributes
File metadata and controls
69 lines (58 loc) · 862 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
61
62
63
64
65
66
67
68
69
# Auto detect text files and perform LF normalization
* text=auto
# Source code
*.scala text
*.sbt text
*.sc text
*.java text
*.js text
*.ts text
*.json text
*.xml text
*.html text
*.css text
*.md text
*.yml text
*.yaml text
# Mill build files
mill text
*.mill text
# Configuration files
*.conf text
*.properties text
*.toml text
# Documentation
*.txt text
*.rst text
# Archives
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
# Executables
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# IDE files
*.iml text
*.ipr text
*.iws text
# OS generated files
.DS_Store binary
Thumbs.db binary
# Line ending normalization for shell scripts
*.sh text eol=lf
*.bash text eol=lf
# Windows batch files
*.bat text eol=crlf
*.cmd text eol=crlf