Skip to content

Commit 3bea732

Browse files
committed
fix(docs): correct malformed CLAUDE.md commands section
Replace placeholder text [ONLY COMMANDS FOR ACTIVE TECHNOLOGIES] with actual project commands for testing, linting, and running.
1 parent 4e5fd15 commit 3bea732

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

CLAUDE.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,19 @@ tests/
1515

1616
## Commands
1717

18-
cd src [ONLY COMMANDS FOR ACTIVE TECHNOLOGIES][ONLY COMMANDS FOR ACTIVE TECHNOLOGIES] pytest [ONLY COMMANDS FOR ACTIVE TECHNOLOGIES][ONLY COMMANDS FOR ACTIVE TECHNOLOGIES] ruff check .
18+
```bash
19+
# Run tests
20+
pytest tests/ -v
21+
22+
# Run tests with coverage
23+
pytest --cov=src/github_analyzer --cov-report=term-missing
24+
25+
# Run linter
26+
ruff check src/github_analyzer/
27+
28+
# Run the analyzer
29+
python github_analyzer.py --days 7
30+
```
1931

2032
## Code Style
2133

0 commit comments

Comments
 (0)