-
-
Notifications
You must be signed in to change notification settings - Fork 920
Expand file tree
/
Copy path.gitattributes
More file actions
37 lines (31 loc) · 751 Bytes
/
.gitattributes
File metadata and controls
37 lines (31 loc) · 751 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
# Set default behavior to automatically normalize line endings
* text=auto
# Explicitly declare text files you want to always be normalized and converted to native line endings on checkout.
*.kt text
*.kts text
*.xml text
*.gradle text
*.md text
*.json text
*.yml text
*.yaml text
*.toml text
*.properties text
*.pro text
*.txt text
*.bash text eol=lf
*.css text diff=css
*.sh text eol=lf
# Declare binary files to be preserved as-is
*.png binary
*.jpg binary
*.jar binary
# Custom merge driver for Gradle lock files
gradle.lockfile merge=union
# Ensure shell scripts have UNIX line endings
*.sh text eol=lf
# Ensure Windows batch files have CRLF line endings
*.bat text eol=crlf
# Handle Android Studio specific files
*.iml text
*.idea/** text