-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.gitattributes
More file actions
45 lines (41 loc) · 844 Bytes
/
.gitattributes
File metadata and controls
45 lines (41 loc) · 844 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
# Auto detect text files and normalize line endings to LF in repository
* text=auto eol=lf
# Explicitly declare text files
*.js text eol=lf
*.mjs text eol=lf
*.cjs text eol=lf
*.json text eol=lf
*.md text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.properties text eol=lf
*.xml text eol=lf
*.html text eol=lf
*.css text eol=lf
*.sh text eol=lf
*.bash text eol=lf
# Windows-specific files should use CRLF
*.cmd text eol=crlf
*.bat text eol=crlf
*.ps1 text eol=crlf
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.zip binary
*.tar binary
*.gz binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
# Exclude files from exporting
.gitattributes export-ignore
.gitignore export-ignore
.github/ export-ignore
tests/ export-ignore
mochawesome-report/ export-ignore
coverage/ export-ignore