From 18a80314f2fe76168be7463c7ac02d3bfa17e3b2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 23:48:04 +0000 Subject: [PATCH] docs: update AGENTIC_CODING.md to use Ruff instead of Black/Flake8 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- AGENTIC_CODING.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/AGENTIC_CODING.md b/AGENTIC_CODING.md index 29c7652f..76568546 100644 --- a/AGENTIC_CODING.md +++ b/AGENTIC_CODING.md @@ -696,12 +696,13 @@ Before submitting code: Run full check: ```bash pytest --cov=app -black app/ tests/ -flake8 app/ --max-line-length=120 +ruff check app/ tests/ +ruff format --check app/ tests/ mypy app/ -bandit -r app/ ``` +**Note:** This project uses Ruff, which replaces Black, Flake8, isort, and Bandit with a single, faster tool. + --- ## 🤝 Agent Collaboration