generated from GoodforGod/java-jmh-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitattributes
60 lines (52 loc) · 1.37 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
49
50
51
52
53
54
55
56
57
58
59
60
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
# The above will handle all files NOT found below
# These files are text and should be normalized (Convert crlf => lf)
*.bash text eol=lf
*.css text diff=css
*.df text
*.htm text diff=html
*.html text diff=html eol=lf
*.java text diff=java eol=lf
*.js text
*.json text eol=lf
*.jsp text eol=lf
*.jspf text eol=lf
*.jspx text eol=lf
*.properties text eol=lf
*.sh text eol=lf
*.tld text
*.txt text eol=lf
*.tag text
*.tagx text
*.xml text
*.yml text eol=lf
# These files are binary and should be left untouched
# (binary is a macro for -text -diff)
# Archives
*.7z binary
*.br binary
*.gz binary
*.tar binary
*.zip binary
*.jar binary
*.so binary
*.war binary
*.dll binary
# Documents
*.pdf binary
# Images
*.ico binary
*.gif binary
*.jpg binary
*.jpeg binary
*.png binary
*.psd binary
*.webp binary
# Fonts
*.woff2 binary
# Other
*.exe binary
*.class binary
*.ear binary