-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.gitattributes
More file actions
52 lines (47 loc) · 864 Bytes
/
.gitattributes
File metadata and controls
52 lines (47 loc) · 864 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Normalize text files to LF in the repository and on checkout.
* text=auto eol=lf
# Shell
*.sh text eol=lf
*.bash text eol=lf
*.zsh text eol=lf
*.ps1 text eol=lf
# JavaScript / TypeScript
*.js text eol=lf
*.mjs text eol=lf
*.cjs text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
# Config and markup
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.md text eol=lf
*.html text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.xml text eol=lf
*.txt text eol=lf
*.env text eol=lf
*.toml text eol=lf
*.ini text eol=lf
*.properties text eol=lf
Dockerfile text eol=lf
Makefile text eol=lf
# Git metadata
.gitignore text eol=lf
.gitattributes text eol=lf
# Binary — do not normalize
*.png -text
*.jpg -text
*.jpeg -text
*.gif -text
*.ico -text
*.webp -text
*.pdf -text
*.zip -text
*.gz -text
*.tgz -text
*.dcm -text
*.mht -text
*.mht.gz -text