From 96a4562dacbdebcb3c7048502c0e7d64b13f6b1d Mon Sep 17 00:00:00 2001 From: DevForge Engineer Date: Mon, 18 May 2026 06:33:45 -0400 Subject: [PATCH] docs: fix typo 'uff' -> 'ruff' in CONTRIBUTING.md (broken commands) --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e93a00c..59860f7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,14 +8,16 @@ Thanks for your interest in contributing! 2. Create a virtual environment: python -m venv .venv && source .venv/bin/activate 3. Install dev dependencies: pip install -e ".[dev]" 4. Run tests: pytest tests/ -v -5. Lint: uff check src/ +5. Lint: +ruff check src/ ## Pull Requests - Fork the repo and create a feature branch - Add tests for any new functionality - Ensure all existing tests pass -- Run uff check src/ --fix before committing +- Run +ruff check src/ --fix before committing - Keep PRs focused on a single change ## Reporting Issues