-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
.gitignore
208 lines (169 loc) · 4.44 KB
/
.gitignore
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
###
### GitHub repository .gitignore section
###
# Ignore directories generated by Composer
/console/
/drush/Commands/contrib/
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
/web/private/scripts/quicksilver
/web/private/examples
# Ignore transpiled js
/web/modules/custom/**/js/*.js
/web/modules/custom/**/js/**/*.js
/web/modules/custom/**/vue_templates/*.js
!/web/modules/custom/**/vue_templates/*.es6.js
/web/modules/custom/**/vue_templates/**/*.js
!/web/modules/custom/**/vue_templates/**/*.es6.js
!/web/modules/custom/**/js/*.es6.js
!/web/modules/custom/**/js/*.legacy.js
/web/themes/custom/tableau_www/js/**/*.js
!/web/themes/custom/tableau_www/js/**/*.es6.js
!/web/themes/custom/tableau_www/js/**/*.legacy.js
/web/themes/custom/**/js/**/*.js
!/web/themes/custom/**/js/**/*.es6.js
!/web/themes/custom/**/js/**/*.legacy.js
*.js.map
# Ignore Node files
/node_modules/
package-lock.json
# Add directories containing build assets below.
# Keep all additions above the "cut" line.
# This distinction is only important when using this
# repository as a custom upstream. The .gitignore file
# is not modified in the GitHub PR workflow.
# :::::::::::::::::::::: cut ::::::::::::::::::::::
###
### Pantheon site .gitignore section
###
### Items below the "cut" line are still ignored on
### the Pantheon site. Items above the "cut" line
### are ignored in the GitHub repository, but committed
### to the Pantheon repository.
### @see RoboFile.php prepareArtifacts
###
# Ignore Lando settings
.lando.yml
# Ignore local bash files
.bashrc-local
# Ignore local settings
/web/sites/settings.local.php
/app
/tests/behat/behat.local.yml
/tests/phpunit.local.xml
# Lint cache
.phplint-cache
# Ignore Drupal's file directory
web/sites/default/files
# Pantheon commits a settings.php for environment-specific settings.
# Place local settings in settings.local.php
web/sites/*/settings.local.php
# Ignore SimpleTest multi-site environment.
web/sites/simpletest
# Ignore .gitlab settings globally.
/**/.gitlab/
# Ignore package manager files from dependencies.
/vendor/**/yarn.lock
/vendor/**/composer.json
/vendor/**/composer.lock
/web/**/composer.json
/web/**/composer.lock
# Allow locking specific versions of npm packages, in order to avoid potential issues of breaking changes.
# /web/**/yarn.lock
# Ignore test files within Drupal and vendors.
/vendor/**/tests/
/web/core/**/tests/
/web/libraries/**/tests/
/web/modules/contrib/**/tests/
# Ignore common text files within Drupal and vendors.
/vendor/**/README.*
/vendor/**/LICENSE.*
/vendor/**/PATCHES.*
/web/**/README.*
/web/**/LICENSE.*
/web/**/PATCHES.*
# Ignore select source filetypes that are compiled to other files.
/vendor/**/*.scss
/web/libraries/**/*.scss
/web/libraries/**/*.ts
/web/modules/contrib/**/*.scss
/web/core/**/*.es6.js
/web/modules/contrib/**/*.es6.js
# Ignore files generated by PhpStorm
.idea
# Ignore sensitive files
.env
# Ignore CI config that is not our's.
/web/**/.travis.yml
/web/**/.circleci/
# Odd patterns from select dependencies.
# For some reason datalayer-helper bundles the entire closure js compiler.
/**/third_party/closure-compiler/
/**/third_party/closure-library/
/**/third_party/closure-linter/
# Coveo's js search-ui framework includes a lot of tests and docs.
/web/libraries/coveo/coverage/
/web/libraries/coveo/docgen/
# No need for the umami Drupal 8 demo profile.
/web/core/profiles/demo_umami/
# Packages #
############
*.7z
*.dmg
*.gz
*.bz2
*.iso
*.jar
*.rar
*.tar
*.zip
*.tgz
# Logs and databases #
######################
/logs/
/database/
*.log
# Test files #
tests/cypress/build/
# OS generated files #
######################
.DS_Store*
ehthumbs.db
Icon
!/web/core/lib/Drupal/Core/Layout/Icon
Thumbs.db
._*
# Vim generated files #
######################
*.un~
# SASS #
##########
.sass-cache
# Things in the core directory that Drupal 8 commits in the repository.
!web/core/**/*.gz
# CircleCI directories#
#######################
circleci/database/*
# But keep the folders
!circleci/database/.keep
# The Build #
# Include Drupal settings files
!/web/sites/*/settings.php
!/web/sites/*/services.yml
# Ignore local and generated settings files
/web/sites/*/settings.local.php
/web/sites/*/settings.build.php
/web/sites/*/services.build.yml
# Ignore artifacts
/artifacts
# DDev
/web/sites/default/drushrc.php
# Gitpod
.ddev/docker-compose.host-docker-internal.yaml
.ddev/docker-compose.xdebug-ip.yaml
.ddev/config.fqdns.yaml
.ddev/config.gitpod-overrides.yaml