# This project .gitignore file
# lists content that does NOT need to be tracked for project history.

# ----------------------------------------
# VS Code (special case)
# ----------------------------------------
# Ignore all VS Code folder content by default
.vscode/*

# ----------------------------------------
# macOS and Windows system files
# ----------------------------------------
.DS_Store
.AppleDouble
.LSOverride
Icon\r
._*
.Spotlight-V100/
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini

# ----------------------------------------
# Editors / IDEs
# ----------------------------------------
.idea/
*.code-workspace

# ----------------------------------------
# Environment variables and secrets
# ----------------------------------------
.env
.env.*
*.env

# ----------------------------------------
# Python: bytecode, build artifacts
# ----------------------------------------
.venv/
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.ipynb_checkpoints/

# Packaging / distribution
build/
dist/
.eggs/
*.egg-info/
*.egg
*.whl

# ----------------------------------------
# Testing / coverage / linters
# ----------------------------------------
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.ruff_cache/

# ----------------------------------------
# Documentation (MkDocs) — build output
# ----------------------------------------
site/

# ----------------------------------------
# Additional caches and temp files
# ----------------------------------------
.tox/
.mypy_cache/
.pytype/
.cache/

# ----------------------------------------
# Generated artifacts
# ----------------------------------------
logs/
reports/
coverage.xml
# generated by setuptools-scm
src/civic_lib_core/_version.py

# ----------------------------------------
# Storage (runtime pulled data snapshots)
# ----------------------------------------
storage/

# ----------------------------------------
# General temp / system files
# ----------------------------------------
*.swp
*.bak
*.tmp
*.log
tmp/
.github/workflows/__pycache__/

# ----------------------------------------
# Ignore local .pypirc if placed in repo by mistake
# ----------------------------------------
# This file is used to configure PyPI credentials for publishing packages.
# It should not be tracked in the repository for security reasons.
# On Linux and macOS, this file is typically located at ~/.pypirc.
# On Windows, it can be placed in the user's home directory, e.g., C:\Users\<username>\
.pypirc

# ----------------------------------------
# Ignore in library projects
# ----------------------------------------
# Dependency lock file for the 'uv' package manager.
uv.lock
