-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy path.gitignore
More file actions
42 lines (32 loc) · 759 Bytes
/
.gitignore
File metadata and controls
42 lines (32 loc) · 759 Bytes
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
# theme-check plugin
/vendor/
# ignore log files and databases
*.log
*.sql
*.sqlite
# IDE related files
.vscode
# Ignore local override files
.wp-env.override.json
# phpunit
*.result.*
# Directories/files that may appear in your environment
*.log
yarn.lock
/composer.lock
# 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
.eslintcache
*.tsbuildinfo
# Operating system specific files
.DS_Store
Thumbs.db
# Report generated from jest-junit
junit.xml
# Local overrides
.wp-env.override.json