chore: plugin hygiene — .gitignore Python ignores + __pycache__ cleanup #5

Merged
sdk-lead merged 4 commits from plugin/hygiene into main 2026-05-10 16:23:14 +00:00
3 changed files with 18 additions and 0 deletions

18
.gitignore vendored
View File

@ -19,3 +19,21 @@
# Workspace auth tokens
.auth-token
.auth_token
# Python bytecode (append only — do not remove entries above)
__pycache__/
*.pyc
*.py[cod]
*$py.class
.pytest_cache/
# Python bytecode (append only — do not remove entries above)
__pycache__/
*.pyc
*.py[cod]
*$py.class
.Python
*.egg-info/
*.egg
.pytest_cache/
build/
dist/
.eggs/