codeclimate/codeclimate-rubocop

View on GitHub
config/contents/style/if_with_semicolon.md

Summary

Maintainability
Test Coverage
Checks for uses of semicolon in if statements.

### Example:

    # bad
    result = if some_condition; something else another_thing end

    # good
    result = some_condition ? something : another_thing