-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.gitignore
61 lines (47 loc) · 1.04 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
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.phpunit.result.cache
/artifacts
/tests/e2e/artifacts
# The /.cache folder is needed for phpcs to cache results between runs, while other .cache folders must be ignored
# It is not possible to re-include a file if a parent directory of that file is excluded
# So, both /.cache and /.cache./.gitkeep must be re-included
.cache
!/.cache/
/.cache/**
!/.cache/.gitkeep
# Coverage directory used by tools like istanbul
coverage
# Plugin ZIP production build
dist-zip
# Webpack dev build
build/**/runtime*
build/**/*.hot-update.json
build/**/*.hot-update.js
build/**/*.hot-update.js.map
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Composer directories
vendor
# Custom PHPCS configs
.phpcs.xml
phpcs.xml
# Dependency directories
node_modules/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Output of `npm pack`
*.tgz
# Output of `wp-scripts plugin-zip`
*.zip
# dotenv environment variables file
.env
# system files
.DS_Store
Thumbs.db