43 lines
489 B
Plaintext
43 lines
489 B
Plaintext
.DS_Store
|
|
|
|
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Python packaging artifacts
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist/
|
|
pip-wheel-metadata/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Test and coverage outputs
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Type checker and linter caches
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyre/
|
|
|
|
# IDE and editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# debug resources
|
|
debug/
|
|
|
|
# Node dependencies for browser automation tooling
|
|
node_modules/
|