-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
48 lines (42 loc) · 1.04 KB
/
.gitattributes
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
# EOL normalization for all files detected as text (ie. eol=lf)
* text=auto eol=lf
# Unix files
*.sh text
# Java and Kotlin
*.kt text
*.java text
# Misc
*.kts text
*.env text
*.sql text
*.md text
*.txt text
*.xml text
*.yml text
*.yaml text
*.json text
*.toml text
*.conf text
*.config text
*.gradle text
*.defaults text
*.properties text
*.graphml text
Dockerfile* text
spring.factories text
# Windows scripts
*.bat text eol=crlf
*.cmd text eol=crlf
# Image files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
# Archives
*.jar binary
*.war binary
*.tar binary
*.tar.gz binary
*.tar.bz2 binary
*.zip binary
*.7z binary