-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
fix: Remove parenthesis around sole list items #4312
Conversation
Signed-off-by: cobalt <[email protected]>
Signed-off-by: cobalt <[email protected]>
for more information, see https://pre-commit.ci
Signed-off-by: cobalt <[email protected]>
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.
Thanks, these changes look good.
However, I think I'd prefer to keep feature names stable through the year. The main motivation for adding --enable-unstable-feature
was to allow users who want to keep some feature on to just turn on the feature in their config and have it keep working.
Also, I don't want to accept a PR that directly adds a new unstable style. I see the unstable style as a holding pen for style changes that we'd originally put into preview but later ran into issues with. New style features should go into preview instead.
Signed-off-by: cobalt <[email protected]>
Apologies for the delay @JelleZijlstra, I've had other priorities recently. The main issue was I put |
Signed-off-by: cobalt <[email protected]>
for more information, see https://pre-commit.ci
Hey @JelleZijlstra just returned to this PR, sorry for letting it go stale I removed this change from the unstable style, because it doesn't add any issues on its own, it just doesn't work in all cases without Do these changes look good? |
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.
Thank you!
Signed-off-by: cobalt <[email protected]>
Signed-off-by: cobalt <[email protected]>
Signed-off-by: cobalt <[email protected]>
Maybe we should also extend this to single-element sets? The code should be very similar. |
Signed-off-by: cobalt <[email protected]>
@JelleZijlstra Done! |
Fixes #3545, but it affects more places as well.
Description
I added the
remove_lone_list_item_parens
preview style to remove parentheses around items in lists and sets that aren't accompanied by anything else. It's important to note that it depends on the unstablehug_parens_with_braces_and_square_brackets
style to remove parentheses around multiline list items, such as the ones reported in #3545.Checklist - did you ...
CHANGES.md
if necessary?