- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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: no_useless_concat_operator
- do not break variable
#7827
fix: no_useless_concat_operator
- do not break variable
#7827
Conversation
no_useless_concat_operator
no_useless_concat_operator
- do not break variable
This reverts commit 8da1a9d.
@Wirone @julienfalque |
$allowedPatternsForSecondOperand = [ | ||
'/^\s.*/', // e.g. " foo", ' bar', " $baz" | ||
'/^-(?!\>)/', // e.g. "-foo", '-bar', "-$baz" | ||
]; |
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.
I think this will allow merging strings in less cases than would technically be possible but I'm guessing this will actually be very rare so good enough for me, we'll improve this later if needed.
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.
We can always think about making regexes configurable, so people can fine-tune this behaviour on their side 🙂.
I took a brief look on a diff, but mostly I rely on @julienfalque's review here - let's merge 👍. |
Fixes #7826