-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.gitignore
112 lines (93 loc) · 1.98 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
/.editorconfig
# Ignore dependencies that are managed with Composer.
# Generally you should only ignore the root vendor directory. It's important
# that core/assets/vendor and any other vendor directories within contrib or
# custom module, theme, etc., are not ignored unless you purposely do so.
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/drush/Commands/contrib/
/web/profiles/contrib/
/web/libraries/
/web/.csslintrc
/web/.eslintignore
/web/.eslintrc.json
/web/.ht.router.php
/web/.htaccess
/web/INSTALL.txt
/web/README.md
/web/autoload.php
/web/example.gitignore
/web/index.php
/web/sites/default.settings.php
/web/sites/default/.gitignore
/web/update.php
/web/web.config
/web/profiles/
# Ignore configuration files that may contain sensitive information.
/web/sites/*/settings*.php
/web/sites/*/services*.yml
# Ignore user interface translations
/web/config/sync/language/
# Ignore paths that contain user-generated content.
/web/sites/*/files
/web/sites/*/private
# Ignore SimpleTest multi-site environment.
/web/sites/simpletest
# Ignore files generated by common IDEs
/.idea/
/.vscode/
# Ignore .env files as they are personal
/.env
# Ignore Packages
*.7z
*.dmg
*.gz
*.bz2
*.iso
*.jar
*.rar
*.tar
*.zip
*.tgz
*.csv
# Ignore Logs and databases
*.log
*.sql
# Ignore OS generated files
.DS_Store*
ehthumbs.db
Thumbs.db
# Ignore Local Development files
/web/sites/services.dev.yml
/web/sites/settings.dev.php
node_modules
.lando.local.yml
# Ignore Theme dist files
/web/themes/custom/vote_gov/dist/
# Allow cloud.gov settings file.
!web/sites/default/settings.cloudgov.php
# Allow exported content file.
!web/scs-export/*.zip
# Code coverage
/.coverage
*.pem
*.crt
credentials-*.json
# Test screenshots
/tests/**/screenshots/**
# Spatial data
spatial-data/*.dbf
spatial-data/*.prj
spatial-data/*.shx
spatial-data/*.shp
spatial-data/*.txt
!spatial-data/us.cities500.txt.zip
/.gitattributes
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
# Emacsen
.dir-locals.el