Files
TinyTorch/.gitignore
Vijay Janapa Reddi 2da497d727 Update gitignore to exclude temporary analysis files
Added comprehensive patterns to ignore AI-generated temporary reports:
- Module review reports (*_REPORT*.md)
- Analysis summaries (*_SUMMARY.md, *_ANALYSIS.md)
- Fix tracking (*_FIXES*.md, *_CHANGES*.md)
- Verification scripts (VERIFY_*.py)
- Other temporary docs (*_CHECKLIST.md, *_GUIDE.md, etc.)

These files are generated during module reviews and debugging sessions
but are not part of the permanent codebase documentation.
2025-11-10 19:50:26 -05:00

153 lines
1.8 KiB
Plaintext

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
*.manifest
*.spec
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
bin/
include/
lib/
lib64/
pyvenv.cfg
share/
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Jupyter Book
book/_build/
# NBGrader
assignments/autograded/
assignments/feedback/
assignments/submitted/
# Logs
*.log
# Database
*.db
*.sqlite
# OS
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.temp
# Backup files
*.bak
*.backup
# AI assistant configs
.claude/
.cursor/
.ai/
# Project specific
tito-cli.log
COMMIT_LOG.txt
# Downloaded datasets (not source-controlled, too large)
data/
datasets/
milestones/datasets/
# BUT: Include TinyTorch's curated educational datasets (tiny, ship-with-repo)
!datasets/tinydigits/
!datasets/tinytalks/
!datasets/tinymnist/
!datasets/README.md
!datasets/DATASET_ANALYSIS.md
# Temporary AI-generated reports (not permanent project docs)
MODULE_REVIEW_REPORT_*.md
MODULE_STATUS_SUMMARY.md
**/*_SUMMARY.md
**/*_REPORT*.md
**/*_ANALYSIS.md
**/*_VERIFICATION.md
**/*_CHECKLIST.md
**/*_FIXES*.md
**/*_CHANGES*.md
**/*_COMPLETE.md
**/*_RECOMMENDATIONS.md
**/*_BEFORE_AFTER.md
**/*_OUTPUTS.md
**/*_UPDATE.md
**/*_STATUS.md
**/*_MAP.md
**/*_GUIDE.md
**/*_FINDINGS.md
**/*_PLAN.md
**/*_COMPARISON.md
**/VERIFY_*.py
progress.json
modules/HASATTR_*.md