-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Context
The docs claim ruff format uses "double quotes, trailing commas" (workflows.md § Code style), which is currently accurate — these are ruff's defaults. However, there is no explicit [tool.ruff.format] section in pyproject.toml to pin these settings.
If ruff changes its defaults in a future release, the docs would silently become inaccurate.
Proposed change
Add an explicit [tool.ruff.format] section to pyproject.toml:
[tool.ruff.format]
quote-style = "double"
skip-magic-trailing-comma = falseThis makes the contract explicit and resilient to upstream default changes.
Origin
Raised during review of #94 (docs rewrite PR).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation