mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
c9240b7894
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>
57 lines
851 B
Plaintext
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/*
|