-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
.gitattributes
54 lines (49 loc) · 1.64 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
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
public/* linguist-vendored
docs/* linguist-documentation
# Set the default behavior, in case people don't have core.autocrlf set.
# Git will always convert line endings to LF on checkout. You should use
# this for files that must keep LF endings, even on Windows.
* text eol=lf
# ------------------------------------------------------------------------------
# All the files and directories that can be excluded from dist,
# we could have a more clean vendor/
#
# So when someone will install that package through with --prefer-dist option,
# all the files and directories listed in .gitattributes file will be excluded.
# This could have a big impact on big deployments and/or testing.
# ------------------------------------------------------------------------------
# /.github export-ignore
# /tests export-ignore
# /build export-ignore
# /docs export-ignore
# /.cs.php export-ignore
# /.editorconfig export-ignore
# /.gitattributes export-ignore
# /.gitignore export-ignore
# /.scrutinizer.* export-ignore
# /phpcs.xml export-ignore
# /phpstan.neon export-ignore
# /phpunit.xml export-ignore
# Define binary file attributes.
# - Do not treat them as text.
# - Include binary diff in patches instead of "binary files differ."
*.pdf binary
*.mo binary
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.zip binary
*.gif binary
*.ico binary
*.phar binary
*.gz binary
*.otf binary
*.eot binary
*.svg binary
*.ttf binary
*.woff binary
*.woff2 binary