-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
56 lines (48 loc) · 1.25 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
## Handle line endings automatically for files detected as
## text and leave all files detected as binary untouched.
## This will handle all files NOT defined below.
* text=auto
# Source code
*.css text diff=css
*.htm text diff=html
*.html text diff=html
*.js text
*.map text -diff
.husky/* text eol=lf
# Docker
Dockerfile text
# Configs
.editorconfig text
.env text
.gitattributes text
.gitconfig text
*.lock text -diff
package.json text eol=lf
pnpm-lock.yaml text eol=lf -diff
*.yaml text
browserslist text
Makefile text
makefile text
# Documentation
*.md text diff=markdown
*README* text
# Graphics
*.gif binary
*.gifv binary
*.ico binary
*.jpg binary
*.pdf binary
*.png binary
*.svg text
*.svgz binary
*.webp binary
# Fonts
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary
# RC files (like .babelrc or .eslintrc)
*.*rc text
# Ignore files (like .gitignore)
*.*ignore text