-
Notifications
You must be signed in to change notification settings - Fork 125
Closed
Copy link
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Milestone
Description
Summary
The uv-projects.instructions.md file lists black in the always-install tool set, but the repository uses ruff as the Python formatter. This inconsistency causes agents and contributors to install the wrong formatter.
Context
The coding standards instructions at .github/instructions/coding-standards/uv-projects.instructions.md specify tools that should always be installed in Python projects. The list includes black as the formatter, but the repository's actual convention (established in PR #868 and the Python coding standards) uses ruff format instead. Ruff handles both linting and formatting, making black redundant and conflicting.
Changes Required
| File | Change |
|---|---|
.github/instructions/coding-standards/uv-projects.instructions.md |
Replace black with ruff in the always-install list |
Acceptance Criteria
-
uv-projects.instructions.mdlistsruffinstead ofblackas the formatter - No references to
blackremain in the instructions file - Instructions are consistent with actual project tooling
Related
- PR feat(skills): add PowerPoint automation skill with YAML-driven deck generation #868 — PowerPoint automation skill (uses ruff, not black)
- feat(ci): Add Python linting CI workflow with ruff #889 — Python linting CI workflow with ruff
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation