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
With the following code
if condition do_this ; do_that end
Rubocop-0.31 fixes it as
do_this ; do_that if condition
which is not equivalent. Note 1 : I use the semi-colon in the following case
if error_condition complain("error message") ; return end
which look really better than
if error_condition complain ... return end
Note 2: I should use the one-liner guard with parentheses _md
The text was updated successfully, but these errors were encountered:
Looks like a bug indeed.
Sorry, something went wrong.
fc645a1
Merge pull request #1904 from jonas054/1897_fix_if_modifier_and_semic…
f2b663b
…olon [Fix #1897] Don't change multiple statements into modifier if
jonas054
No branches or pull requests
With the following code
Rubocop-0.31 fixes it as
which is not equivalent.
Note 1 : I use the semi-colon in the following case
which look really better than
Note 2: I should use the one-liner guard with parentheses
_md
The text was updated successfully, but these errors were encountered: