-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
50 lines (46 loc) · 874 Bytes
/
.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
# Autodetect text files
* text=auto
# ...Unless the name matches the following
# overriding patterns
# Definitively text files
*.txt text
*.json text
*.js text
*.ts text
.env text
.env-* text
*.sh text
*.sql text
*.yml text
*.py text
*.js text
*.ts text
*.ini text
*.jq text
Dockerfile text
Dockerfile.* text
makefile text
makefile.* text
Makefile text
Makefile.* text
# Ensure those won't be messed up with
*.jpg binary
*.gif binary
*.png binary
# force line endings to be lf so db container does not blow up
**/*.sh text eol=lf
**/*.sql text eol=lf
**/.env text eol=lf
**/.env-* text eol=lf
**/Dockerfile text eol=lf
**/Dockerfile.* text eol=lf
**/*.py text eol=lf
**/*.js text eol=lf
**/*.ts text eol=lf
**/*.jq text eol=lf
**/*.json text eol=lf
**/*.yml text eol=lf
**/Makefile text eol=lf
**/Makefile.* text eol=lf
**/makefile text eol=lf
**/makefile.* text eol=lf