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
The RedundantSyntax rule removed the s and not the \. This results in: my \"quoted\" string
Where the original value was: my "quoted" string
It seems to me like it should not remove the s in this case. The manual fix is probably to remove the s and unescape the string but that seems like it might be riskier to auto-fix.
The text was updated successfully, but these errors were encountered:
https://scalacenter.github.io/scalafix/docs/rules/RedundantSyntax.html
Given a string like:
The
RedundantSyntax
rule removed thes
and not the\
. This results in:my \"quoted\" string
Where the original value was:
my "quoted" string
It seems to me like it should not remove the
s
in this case. The manual fix is probably to remove thes
and unescape the string but that seems like it might be riskier to auto-fix.The text was updated successfully, but these errors were encountered: