You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our goal for the next four weeks / August is to make progress on some of the remaining hard problems and close the gap to Black. We're looking for contributors that help us implement the remaining syntaxes (preliminary match statement at this point) and fix black incompatibilities. Please reach out if you're interested in tackling something else.
Syntax support
Our goal is to support formatting of all Python syntax by the end of this iteration. This includes fixing bugs where the formatter changes semantics OR introduces syntax errors.
Black supports disabling formatting for sections or a single line and implements custom logic to ensure that pragma comments (noqa, type-ignore) are kept to the syntax they applied to. Ruff needs to support these comments as well
Our goal for the next four weeks / August is to make progress on some of the remaining hard problems and close the gap to Black. We're looking for contributors that help us implement the remaining syntaxes (preliminary match statement at this point) and fix black incompatibilities. Please reach out if you're interested in tackling something else.
Syntax support
Our goal is to support formatting of all Python syntax by the end of this iteration. This includes fixing bugs where the formatter changes semantics OR introduces syntax errors.
FormattedValue
andJoinedStr
) #5913Match
(includesMatchCase
andPatterns
) #5834nonlocal
statementglobal
statement\
in raw string literals #5941Black compatibility
Our goal is to fix some black, what we believe more complicated, Black divergences:
Suppression and Pragma comments
Black supports disabling formatting for sections or a single line and implements custom logic to ensure that pragma comments (
noqa
,type-ignore
) are kept to the syntax they applied to. Ruff needs to support these comments as wellPerformance [Stretch]
The text was updated successfully, but these errors were encountered: