codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cop check for uses of Object#freeze on immutable objects.

### Example:
    # bad
    CONST = 1.freeze

    # good
    CONST = 1