forked from REBELinBLUE/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
97 lines (81 loc) · 1.61 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
85
86
87
88
89
90
91
92
93
94
95
96
97
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
#
## These files are text and should be normalized (Convert crlf => lf)
#
# Source code
*.php text
*.css text
*.sass text
*.scss text
*.less text
*.sh text
*.js text
*.json text
*.svg text
artisan text
VERSION text
Makefile text
# server config
.htaccess text
*.example text
*.conf text
# git config
.gitattributes text
.gitignore text
.gitconfig text
# code analysis config
.php_cs text
*.dist text
*.xml text
*.yml text
# misc config
.editorconfig text
# build config
*.npmignore text
*.bowerrc text
# Documentation
*.md text
#
## These files are binary and should be left untouched
#
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.ttf binary
*.eot binary
*.woff binary
#
## Remove development files from git archive
#
tests/ export-ignore
examples/ export-ignore
.github/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
.editorconfig export-ignore
.codecov.yml export-ignore
.travis.yml export-ignore
.styleci.yml export-ignore
.php_cs.dist export-ignore
phpcs.xml.dist export-ignore
phpmd.xml.dist export-ignore
phpunit.xml.dist export-ignore
phpstan.dist.neon export-ignore
Makefile export-ignore
composer.lock -diff
yarn.lock -diff
#
## Github config
#
# Consider blade files as HTML
*.blade.php linguist-language=HTML
# Remove compiled assets from github statistics
public/build/rev-manifest.json linguist-vendored
public/build/css/*.css linguist-vendored
public/build/js/* linguist-vendored
public/build/font/* linguist-vendored