decko-commons/decko

View on GitHub
mod/recaptcha/set/all/recaptcha.rb

Summary

Maintainability
A
0 mins
Test Coverage

Freeze mutable objects assigned to constants.
Open

RECAPTCHA_ERROR_CODES = {  # LOCALIZE
  "missing-input-secret" =>    "secret parameter is missing",
  "invalid-input-secret" =>    "secret parameter is invalid or malformed",
  "missing-input-response" =>    "response parameter is missing",
  "invalid-input-response" =>    "response parameter is invalid or malformed",
Severity: Minor
Found in mod/recaptcha/set/all/recaptcha.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

There are no issues that match your filters.

Category
Status