Skip to content

Commit 1deb604

Browse files
marcarlclaude
andcommitted
Fix .gitignore __pycache__ typo and reorganize reports
- Fix critical typo: ___pycache__ → __pycache__/ (was using 3 underscores) - Add .ruff_cache/ to ignored directories - Move reports/ directory into data/ for better organization - Remove obsolete claude-usage.md The __pycache__ typo caused Python cache directories to not be ignored, resulting in bytecode files being tracked in the repository. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 309a75d commit 1deb604

3 files changed

Lines changed: 5 additions & 37 deletions

File tree

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.env
2-
___pycache__
2+
__pycache__/
33
*.pyc
44
*.egg-info/
55
.DS_Store
@@ -11,6 +11,10 @@ ___pycache__
1111
.coverage
1212
htmlcov/
1313
.pytest_cache/
14+
.ruff_cache/
15+
16+
# Ignore input files
17+
sfs_docs
1418

1519
# Ignore output files
1620
logs/
File renamed without changes.

reports/claude-usage.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)