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
A line containing a string and a trailing comma should not be reported to exceed max line length as. See example below:
throw SomeException(
"A long exception message which exceeds the maximum line length and is followed by a (trailing) comma",
e,
)
// or
throw SomeException(
"A long exception message which exceeds the maximum line length and is followed by a (trailing) comma",
)
#2480 does not report string template when it is the only element on the line. But is that string template is followed by a comma, it is still reported.
#2480 does not report string template when it is the only element on the line. But is that string template is followed by a comma, it is still reported.
Originally posted by @paul-dingemans in #2480 (comment)
The text was updated successfully, but these errors were encountered: