codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cop checks for uses of the keyword `not` instead of `!`.

### Example:

    # bad - parentheses are required because of op precedence
    x = (not something)

    # good
    x = !something