7DevsApps/cognito-sync-service

View on GitHub

Showing 1 of 1 total issue

Freeze mutable objects assigned to constants.
Open

  VERSION = '1.1.0'
Severity: Minor
Found in lib/cognito-sync-service/version.rb by rubocop

This cop checks whether some constant value isn't a mutable literal (e.g. array or hash).

Example:

# bad
CONST = [1, 2, 3]

# good
CONST = [1, 2, 3].freeze
Severity
Category
Status
Source
Language