53 lines
540 B
Plaintext
53 lines
540 B
Plaintext
# MkDocs output
|
|
site/
|
|
|
|
# Python cache (ignore all)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# opencode skills (agent-only)
|
|
.opencode/
|
|
AGENTS.md
|
|
.github/PULL_REQUEST_TEMPLATE.md
|
|
|
|
# Scripts (except hooks)
|
|
scripts/*
|
|
!scripts/commit-msg
|
|
!scripts/post-commit
|
|
!scripts/update_readme.py
|
|
!scripts/clean_cache.sh
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
|
|
# ruff
|
|
.ruff_cache/
|
|
|
|
# Environment
|
|
.env
|
|
.env.example
|
|
.venv/
|
|
venv/
|
|
|
|
# uv cache
|
|
.uv/
|
|
|
|
# Scripts cache
|
|
scripts/__pycache__/
|
|
|