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
This may be something I'm just opinionated on, but I did test with prettier and prettier will reproduce the expected behavior in this issue.
Input:
publicclassClassName{publicstringFoo(){if(true)return"foo";if(true)return"bar";if(true)return"some exceedingly long return value that exceeds the max line length limit of 100 chars";return"bar";}}
Output:
publicclassClassName{publicstringFoo(){if(true)return"foo";if(true)return"bar";if(true)return"some exceedingly long return value that exceeds the max line length limit of 100 chars";return"bar";}}
Expected behavior:
publicclassClassName{publicstringFoo(){if(true)return"foo";if(true)return"bar";if(true)return"some exceedingly long return value that exceeds the max line length limit of 100 chars";return"bar";}}
The text was updated successfully, but these errors were encountered:
This may be something I'm just opinionated on, but I did test with prettier and prettier will reproduce the expected behavior in this issue.
Input:
Output:
Expected behavior:
The text was updated successfully, but these errors were encountered: