-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
46 lines (38 loc) · 998 Bytes
/
.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
# This file should contain only rules that are specific to this project. For
# ignoring OS and IDE metadata files, please configure a global gitignore on
# your local machine.
# @see https://github.com/sb2nov/mac-setup/blob/master/Git/gitignore.md
# Ignore Drupal files
web/sites/*/files
docroot/sites/*/files
# Ignore local Drupal configuration
services.local.yml
settings.local.php
settings.ddev.php
# Ignore artifacts
/artifacts/
# Ignore Drupal contrib downloaded by Composer
drush/contrib
docroot/core
docroot/modules/contrib
docroot/themes/contrib/
docroot/profiles/contrib/
web/core
web/modules/contrib
web/themes/contrib/
web/profiles/contrib/
# Ignore regular Composer dependencies
/vendor/
# Ignore npm dependencies
node_modules/
npm-debug.log
# Ignore generated CSS
*.sass-cache/
styleguide/*.sass-cache/
styleguide/source/code/css/*.css
# Capture styleguide lock files
!styleguide/composer.lock
!styleguide/package-lock.json
!styleguide/yarn.lock
/.editorconfig
/.gitattributes