-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
57 lines (50 loc) · 1.48 KB
/
.gitattributes
File metadata and controls
57 lines (50 loc) · 1.48 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
###
## Git Attributes configuration file.
##
## @link https://git-scm.com/docs/gitattributes
###
## -----------------------------------------------------------------------------
## Denote all files that are truly binary and should not be modified.
## @link https://help.github.com/articles/dealing-with-line-endings/
## -----------------------------------------------------------------------------
* text auto
*.gif binary
*.ico binary
*.jpg binary
*.png binary
*.eot binary
*.ttf binary
*.webp binary
*.woff binary
*.woff2 binary
*.zip binary
## -----------------------------------------------------------------------------
## Ignore folders and files when exporting as a ZIP.
## -----------------------------------------------------------------------------
.github/ export-ignore
.idea/ export-ignore
.ideas/ export-ignore
.notes/ export-ignore
.playground/ export-ignore
.wporg/ export-ignore
dev/ export-ignore
docs/ export-ignore
node_modules/ export-ignore
tests/ export-ignore
# Don't export source folders that are copied into `/public`.
/resources export-ignore
# Ignore `/vendor` for this project because it's dev-only.
/vendor export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.phpcs.xml export-ignore
.phpcs.xml.dist export-ignore
composer.json export-ignore
composer.lock export-ignore
package-lock.json export-ignore
package.json export-ignore
phpstan.neon export-ignore
webpack.config.js export-ignore
*.map export-ignore
.DS_Store export-ignore