forked from Metadrop/drupal-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
74 lines (58 loc) · 1.3 KB
/
.gitignore
File metadata and controls
74 lines (58 loc) · 1.3 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
73
74
# Ignore directories generated by Composer.
/drush/contrib/
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
/create-project.gif
# Ignore xdebug docker-compose file
docker-compose.xdebug.override.yml
# Ignore sensitive information.
/web/sites/*/settings.local.php
# Ignore local drush settings
/web/sites/*/local.drush.yml
# Ignore SimpleTest multi-site environment.
# TODO Replace/remove it before d9 release https://www.drupal.org/node/3091784
/web/sites/simpletest
# Ignore paths that contain user-generated content.
/web/sites/*/files
/private-files/*
web/sites/*/translations/*
# OS X files.
.DS_STORE
.Ds_Store
.DS_Store
# Linux files.
.directory
# IDE related directories.
/nbproject/private/
.idea
# Database and compressed files.
*.mysql
*.sql
*.gz
*.zip
*.rar
*.7z
# NPM.
node_modules/
.sass-cache
.cache
# Test related Reports.
/reports/behat/errors/*
/reports/behat/junit/*
/reports/codereview/*
# BackstopJS
/tests/backstopjs/backstop_data/html_report
/tests/backstopjs/backstop_data/bitmaps_test
/tests/backstopjs/backstop_data/ci_report/
# Temporary files
/tmp/*
# Ignore docker-compose env specific settings.
/docker-compose.override.yml
# Ensure .gitkeep files are commited so folder structure get respected.
!.gitkeep
/.editorconfig
/.gitattributes