-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path.gitattributes
More file actions
72 lines (65 loc) · 1.87 KB
/
Copy path.gitattributes
File metadata and controls
72 lines (65 loc) · 1.87 KB
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
# Set default behaviour, in case users don't have core.autocrlf set.
# More info: https://help.github.com/articles/dealing-with-line-endings
* text=auto
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
# PHP — PSR-12
*.php text eol=lf
# Web
*.html text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.js text eol=lf
*.json text eol=lf
*.svg text eol=lf
*.map text eol=lf
# Config
*.yml text eol=lf
*.yaml text eol=lf
*.xml text eol=lf
*.neon text eol=lf
*.sql text eol=lf
# Docs
*.md text eol=lf
*.txt text eol=lf
*.sh text eol=lf
*.lang text eol=lf
# Denote all files that are truly binary and should not be modified.
*.ico binary
*.jpeg binary
*.jpg binary
*.png binary
*.gif binary
*.pdf binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.zip binary
*.odf binary
*.odt binary
# Export ignores to generate clean production tarballs
/.github export-ignore
/.tx export-ignore
/.phan export-ignore
/dev export-ignore
/doc export-ignore
/tests export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.jshintignore export-ignore
.jshintrc export-ignore
.phpcs.xml export-ignore
.scrutinizer.yml export-ignore
CLAUDE.md export-ignore
composer.json export-ignore
composer.lock export-ignore
gulpfile.js export-ignore
modulebuilder.txt export-ignore
package.json export-ignore
package-lock.json export-ignore
phpstan.baseline.neon export-ignore
phpstan.neon export-ignore
RELEASE_NOTES.md export-ignore
RELEASE_NOTES_TEMPLATE.md export-ignore