Files
trailofbits-buttercup/.gitignore
Dan Guido c9240b7894 chore: add mypy cache to gitignore (#312)
Added .mypy_cache/ patterns to prevent committing mypy's type checking
cache directories. This keeps the repository clean and avoids conflicts
between different development environments.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-authored-by: Claude <noreply@anthropic.com>
2025-08-20 21:09:20 -04:00

57 lines
851 B
Plaintext

example-crs-architecture/
.terraform/
errored.tfstate
## Localized environment variables
**/.env
**/env
**/env.*
**/venv
## Generated Kubernetes Resources
.k8s
deployment/k8s/values-*.yaml
deployment/k8s/base/tailscale-coredns/coredns-custom.yaml
deployment/k8s/base/tailscale-operator/operator.yaml
## Python
__pycache__/
# Devenv
# This is another solution for managing dev environments
# And these entries are ment to prevent accidentally
# committing stuff that others may not be utilizing.
.devenv*
devenv.local.nix
devenv.lock
# direnv
.direnv
env/
pip-wheel-metadata/
*.egg-info/
__pycache__/
.coverage*
.idea
html/
dist/
.pdm-*
pdm.lock
.langchain.db
# Mypy type checking cache
.mypy_cache/
**/.mypy_cache/
*.bak
*.orig
# generated protobuf
common/common/datastructures/fuzzer_msg*
crs_scratch/*
tasks_storage/*
node_data_storage/*