-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
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
Add ruff Implicit String Concatenation Rules #1323
Conversation
…ts with ruff format
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ohh i like this one
One weird quirk about this pull request is that it seems GitHub's counts of lines of code counts explicitly concatenated strings as a single line and implicitly concatenated strings as multiple lines. That's why this pull request shows that multiple lines of code are being added when technically it's just a single line of code being added. |
Built on top of #1324, this PR adds flake8-implicit-string-concat rules which ask contributors to use implicit multi-line string concatenation rather than explicit multi-line concatenation.
It also contains code changes to resolve all resulting errors.
No changes to code behavior.