Skip to content
New issue

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

Accept method calls for Style/MultipleComparison #8939

Merged

Commits on Oct 25, 2020

  1. Accept method calls for Style/MultipleComparison

    This PR accepts comparisons of multiple method calls for
    `Style/MultipleComparison` to avoid unnecessary method calls.
    
    ```ruby
    # also good
    foo if a == b.lightweight || a == b.heavyweight
    ```
    
    This change can reduce RuboCop's own disable comment.
    koic committed Oct 25, 2020
    Copy the full SHA
    dbc2714 View commit details
    Browse the repository at this point in the history