mirror of
https://github.com/kc1awv/rrcd.git
synced 2026-04-23 20:19:59 -07:00
41 lines
439 B
Plaintext
41 lines
439 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.pyre/
|
|
.pytype/
|
|
.ruff_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# Packaging / builds
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS / editor temp
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Reticulum / local runtime state (keep secrets out of git)
|
|
# (Adjust if you want to commit a sample config separately)
|
|
.rrc/
|
|
*.identity
|
|
|
|
# Test artifacts
|
|
/tmp/
|
|
|
|
# Local logs
|
|
*.log
|