# Shared .gitignore baseline. Each repo extends this with its own
# language/toolchain-specific entries (Python in scry-connect,
# Gradle/Android in scry-android, etc.)

# ── OS / editor noise ──────────────────────────────────────────────
.DS_Store
Thumbs.db
ehthumbs.db
desktop.ini

# JetBrains
.idea/
*.iml
*.iws

# VS Code
.vscode/
*.code-workspace

# Vim / Emacs
*.swp
*.swo
*~
\#*\#
.\#*

# Sublime
*.sublime-project
*.sublime-workspace

# ── Build / dependency artefacts ──────────────────────────────────
node_modules/
.cache/
.tmp/
.temp/
*.log
logs/

# ── Secrets — NEVER commit ────────────────────────────────────────
.env
.env.*
!.env.example
!.env.sample
*.pem
*.key
*.jks
*.keystore
*.p12
*.p8
*.mobileprovision
secrets/
credentials/

# ── Test / coverage ───────────────────────────────────────────────
.coverage
.coverage.*
htmlcov/
coverage/
.nyc_output/
*.lcov

# ── Misc ──────────────────────────────────────────────────────────
*.orig
*.bak
*.rej

# ── Python ─────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
*.egg
MANIFEST

# Virtual environments
.venv/
venv/
env/
ENV/
.python-version

# pytest
.pytest_cache/

# mypy
.mypy_cache/
.dmypy.json

# ruff
.ruff_cache/

# core dumps (e.g. from a crashed ros2 process)
core
core.*

# rosbags + recordings
*.db3
*.mcap
rosbag2_*/

# Generated by hatch-vcs at build time.
scry_connect/_version.py
