codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cop enforces the use the shorthand for self-assignment.

### Example:

    # bad
    x = x + 1

    # good
    x += 1