| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # Ignore Python artifacts
- __pycache__/
- *.pyc
- *.pyo
- *.pyd
- # Virtual environments
- venv/
- ENV/
- env/
- .venv/
- env.bak/
- # Node modules (if any)
- node_modules/
- # Distribution / build
- /dist/
- build/
- dist/
- *.egg-info/
- # Environment and logs
- *.env
- .env*
- *.log
- # IDEs and editors
- .vscode/
- .idea/
- *.swp
- *.swo
- # Misc
- .coverage
- .coverage.*
- .cache/
- *.pytest_cache/
|