Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update gitignore file #460

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,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
Loading