| # macOS | |
| .DS_Store | |
| ._* | |
| .AppleDouble | |
| .LSOverride | |
| .Spotlight-V100 | |
| .Trashes | |
| .fseventsd | |
| # Windows | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini | |
| # Linux | |
| *~ | |
| .directory | |
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| .ipynb_checkpoints/ | |
| # Editors / IDEs | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| *.bak | |
| *.tmp | |
| # Local virtual envs (should never be committed to a dataset repo) | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Hugging Face / huggingface_hub local cache (in case it gets created here) | |
| .cache/ | |
| .huggingface/ | |
| # Logs / scratch | |
| *.log | |
| scratch/ | |
| tmp/ | |