Skip to content
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

Make the eager argument list splitting heuristic more conservative. #1700

Merged
merged 1 commit into from
Apr 4, 2025

Conversation

munificent
Copy link
Member

Some folks on the Flutter team pointed out that the previous rule is too aggressive and splits even simple common code like:

Text('Item 1', style: TextStyle(color: Colors.white));

That's probably simple enough to stay on one line. So this tweaks the heuristic to allow that to remain unsplit. Where the old heuristic split any argument list with a named argument that contained a nested named argument, this requires there to be at least three named arguments.

It's sort of an arbitrary cutoff, but it seems to do a good job when run on a large corpus.

Some folks on the Flutter team pointed out that the previous rule is too aggressive and splits even simple common code like:

```dart
Text('Item 1', style: TextStyle(color: Colors.white));
```

That's probably simple enough to stay on one line. So this tweaks the heuristic to allow that to remain unsplit. Where the old heuristic split any argument list with a named argument that contained a nested named argument, this requires there to be at least *three* named arguments.

It's sort of an arbitrary cutoff, but it seems to do a good job when run on a large corpus.
@munificent munificent requested review from natebosch and kallentu April 3, 2025 03:59
@munificent
Copy link
Member Author

munificent commented Apr 3, 2025

You can see how this rule compares to the previous more aggressive on in this diff:

munificent/temp_dart_style_3.1.0_diff@a675544

cc @justinmc and @Piinks

@Piinks
Copy link

Piinks commented Apr 3, 2025

This looks great, thank you @munificent!

@natebosch
Copy link
Member

That's probably simple enough to stay on one line.

I don't have any gauge on whether a change like this would push more authors to using the trailing comma config, but IIRC there were examples in the trailing comma threads where they do want to split these cases. My personal preference leans towards the compact version, and I think it's the right choice given the trailing comma config backup option.

@munificent
Copy link
Member Author

I don't have any gauge on whether a change like this would push more authors to using the trailing comma config,

I worry about that a bit too. But I suspect (hope?) that that's a small enough minority of users that this won't move the needle.

I worry equally about angering users who want denser code. A somewhat worrisome aspect of eager splitting is that there's no way to opt out. No "dense mode", and no matter how wide you set your page width, if the formatter decides to eagerly split, it will.

Given that, I think it makes sense to err on the side of being a little more conservative with the eager splitting.

but IIRC there were examples in the trailing comma threads where they do want to split these cases.

True, but there were also cases there where a user wanted something to split that almost no one else would want. I think they are mostly outliers.

My personal preference leans towards the compact version, and I think it's the right choice given the trailing comma config backup option.

SGTM, thanks!

@munificent munificent merged commit eaa3f2d into main Apr 4, 2025
5 checks passed
@munificent munificent deleted the conservative-eager-splitting branch April 4, 2025 00:07
Copy link

@justinmc justinmc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm late but I think this is a big improvement, thanks for following up on this. I even see one example where it fixed the weirdness with trailing dot operators:

Before

          ).copyWith(
             a: TextStyle(color: LinkUtils.hexToColor("015fff")),

After

         ),
       ).copyWith(a: TextStyle(color: LinkUtils.hexToColor("015fff"))),

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants