47 lines
508 B
Plaintext
47 lines
508 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# pytest / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# mypy / pyright
|
|
.mypy_cache/
|
|
.pyright/
|
|
|
|
# Build artefacts (makepkg — these are created next to PKGBUILD)
|
|
pkg/
|
|
*.tar.zst
|
|
*.tar.gz
|
|
*.tar.xz
|
|
|
|
# User config (not tracked — see contrib/config.example.json)
|
|
config.json
|
|
|
|
# Node / Vite
|
|
ui/node_modules/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|