We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
IMHO %r{} looks better for multi=line regexps:
RE = %r{ ^ (...) (...) $ }x # vs RE = / ^ (...) (...) $ /x
The text was updated successfully, but these errors were encountered:
Seems pretty subjective to me, but I've noticed others share this particular preference.
Sorry, something went wrong.
@bbatsov coding styles are subjective things in general ;))
True that. I guess we can add an option to use a different delimiter for multi-line regexps.
UnneededPercentX
%x
Successfully merging a pull request may close this issue.
IMHO %r{} looks better for multi=line regexps:
The text was updated successfully, but these errors were encountered: