-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
57 lines (48 loc) · 1.21 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
# Control end-of-line normalization for different file types.
# Reference: http://adaptivepatchwork.com/2012/03/01/mind-the-end-of-your-line/
# Fallback: Tell Git to detect text files and automatically normalize them
* text=auto
# Git configuration files
.gitattributes text eol=lf
.gitconfig text eol=lf
.gitignore text eol=lf
# Gradle and Maven build files/wrappers
build.gradle text eol=native
settings.gradle text eol=native
gradle.properties text eol=native
gradlew text eol=lf
gradlew.bat text eol=crlf
mvnw text eol=lf
mvnw.bat text eol=crlf
# Unix script files: Always check out with LF
*.sh text eol=lf
*.csh text eol=lf
# Windows script files: Always check out with CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
*.reg text eol=crlf
# Text files
*.txt text
*.csv text
*.xml text
*.html text
*.yml text
*.md text
*.json text
# Source code
*.groovy text diff=java
*.java text diff=java
*.js text
*.ts text
*.tsx text
*.css text diff=css
*.scss text diff=css
# CrossAsset
*.nxt text
# Binary image files
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary