chore: update doc and add pre-commit

This commit is contained in:
2025-03-11 10:45:26 -06:00
parent 354834fff7
commit 958d87bcae
4 changed files with 40 additions and 10 deletions

View File

@@ -15,14 +15,14 @@ uv run -m mcontainer.cli
## Lint/Test Commands
```bash
# Run linting
uv run --with=ruff ruff check .
uvx ruff check .
# Run type checking (note: currently has unresolved stub dependencies)
# Skip for now during development
# uv run --with=mypy mypy .
# Run formatting
uv run --with=ruff ruff format .
uvx ruff format .
# Run all tests
uv run -m pytest