Skip to content

Files

Latest commit

 

History

History
21 lines (13 loc) · 314 Bytes

Style-RedundantFreeze.md

File metadata and controls

21 lines (13 loc) · 314 Bytes

Pattern: Redundant freeze

Issue: -

Description

This rule check for uses of Object#freeze on immutable objects.

Examples

# bad
CONST = 1.freeze

# good
CONST = 1

Further Reading