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
With a sigil like ~w, a codebase might use a variety of delimiters, for no reason other than the author's personal preferences.
Styler could enforce a standard for delimiters, ala our string delimiter choices.
This naive approach would break code like this though: ~w|)|, so the sigil should be evaluated for which delimiter would require the fewest escapes, and otherwise use the delimiters by preference
The text was updated successfully, but these errors were encountered:
With a sigil like
~w
, a codebase might use a variety of delimiters, for no reason other than the author's personal preferences.Styler could enforce a standard for delimiters, ala our string delimiter choices.
For example:
This naive approach would break code like this though:
~w|)|
, so the sigil should be evaluated for which delimiter would require the fewest escapes, and otherwise use the delimiters by preferenceThe text was updated successfully, but these errors were encountered: