codeclimate/codeclimate-rubocop

View on GitHub
config/contents/naming/predicate_name.md

Summary

Maintainability
Test Coverage
This cop makes sure that predicates are named properly.

### Example:
    # bad
    def is_even?(value)
    end

    # good
    def even?(value)
    end

    # bad
    def has_value?
    end

    # good
    def value?
    end