-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
60 lines (55 loc) · 1.2 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
57
58
59
60
# Git will always convert line endings to LF on checkout.
# You should use this for files that must keep LF endings, even on Windows.
# See https://help.github.com/articles/dealing-with-line-endings/
# Auto-detect text files, ensure they use LF.
* text=auto eol=lf
## SOURCE CODE
*.css text
*.html text
*.js text
*.json text
*.jsx text
*.php text
*.scss text
## DOCUMENTATION
*.markdown text
*.md text
*.txt text
AUTHORS text
CHANGELOG text
CHANGES text
CONTRIBUTING text
INSTALL text
license text
LICENSE text
readme text
README text
TODO text
## GRAPHICS
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.pdf binary
*.png binary
*.svg text
*.svgz binary
*.webp binary
## FONTS
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary
## DO NOT EXPORT
## package.json export-ignore
*.map export-ignore
gulpfile.js export-ignore
.git export-ignore
.gitignore export-ignore
.gitattributes export-ignore
/src export-ignore
composer.json export-ignore
composer.lock export-ignore
yarn.lock export-ignore
.editorconfig export-ignore