We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
**
Consider the following source code:
f"aaaaaaaaaaaaaaaaaaaaaaaaaa {10**27} bbbbbbbbbbbbbbbbbbbbbbbbbb ccccccccccccccccccccccccc"
Running ruff format --preview:
ruff format --preview
f"aaaaaaaaaaaaaaaaaaaaaaaaaa {10** 27} bbbbbbbbbbbbbbbbbbbbbbbbbb ccccccccccccccccccccccccc"
Playground: https://play.ruff.rs/80926d6e-f183-4631-94ce-f1702502a0e0
Found in #14454 (comment)
The text was updated successfully, but these errors were encountered:
Huh, that's weird
Sorry, something went wrong.
Oh, is it because of the inner group and the entire line exceeds the line length. We might need to remove if_group_breaks from RemoveSoftLinesBuffer
group
if_group_breaks
RemoveSoftLinesBuffer
this could be annoying
Oh, is it because of the inner group and the entire line exceeds the line length.
Yeah, and we use RemoveSoftLinesBuffer but that doesn't remove the space as you've mentioned.
Successfully merging a pull request may close this issue.
Consider the following source code:
f"aaaaaaaaaaaaaaaaaaaaaaaaaa {10**27} bbbbbbbbbbbbbbbbbbbbbbbbbb ccccccccccccccccccccccccc"
Running
ruff format --preview
:f"aaaaaaaaaaaaaaaaaaaaaaaaaa {10** 27} bbbbbbbbbbbbbbbbbbbbbbbbbb ccccccccccccccccccccccccc"
Playground: https://play.ruff.rs/80926d6e-f183-4631-94ce-f1702502a0e0
Found in #14454 (comment)
The text was updated successfully, but these errors were encountered: