-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
38 lines (31 loc) · 988 Bytes
/
.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
# Ignore all files and folders starting with a dot
.* export-ignore
# But keep the phpstorm meta file, because it can be used even if it's in a dependency.
.meta/ -export-ignore
.meta/.phpstorm.meta.php -export-ignore
# Folders
bin/ export-ignore
coverage/ export-ignore
docs/ export-ignore
private/ export-ignore
types/ export-ignore
# The rest of the files in tests/ should be included
tests/Datasets/ export-ignore
tests/Mocks/ export-ignore
tests/Unit/ export-ignore
tests/__snapshots__/ export-ignore
# Anything related to development tools
phpmd* export-ignore
phpstan* export-ignore
phpunit* export-ignore
rector* export-ignore
# Other configuration files
*.xml export-ignore
release.config.js export-ignore
# Docker
Dockerfile export-ignore
docker-compose.yml export-ignore
docker-compose.*.yml export-ignore
# Yarn
package.json export-ignore
yarn.lock export-ignore