-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitattributes
84 lines (76 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Define the line ending behavior of the different file extensions
# Set default behavior, in case users don't have core.autocrlf set.
* text=auto
* text eol=lf
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
fpdf/** eol=crlf
*.php text
*.default text
*.ctp text
*.sql text
*.md text
*.po text
*.js text
*.css text
*.ini text
*.properties text
*.txt text
*.xml text
*.htm text
*.svg text
*.yml text
.htaccess text
# Declare files that will always have CRLF line endings on checkout.
*.bat eol=crlf
# Declare files that will always have LF line endings on checkout.
*.map eol=lf
*.pem eol=lf
# Denote all files that are truly binary and should not be modified.
*.dbf binary
*.prj binary
*.shp binary
*.shx binary
*.sld binary
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.mo binary
*.pdf binary
*.phar binary
*.woff binary
*.woff2 binary
*.ttf binary
*.otf binary
*.eot binary
*.gz binary
*.z binary
*.bz2 binary
*.7z binary
*.zip binary
# Avoid exporting to vendor
/.github export-ignore
/tests export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.workflows export-ignore
/.phpunit.cache export-ignore
/phpunit.xml export-ignore
/tmp export-ignore
/vendor export-ignore
/composer.lock export-ignore
/fpdf/doc/ export-ignore
/fpdf/tutorial/ export-ignore
/fpdf/FAQ.htm export-ignore
/fpdf/changelog.htm export-ignore
/fpdf/install.txt export-ignore
/scripts/*/ex*.pdf export-ignore
/scripts/*/ex.php export-ignore
/scripts/*/info.htm export-ignore
/scripts/*/*.txt export-ignore
/scripts/*/*.png export-ignore
/scripts/*/*.jpg export-ignore
/scripts/*/*.json export-ignore
/scripts/*/*.md export-ignore