alexpeattie/nitlink

View on GitHub
lib/nitlink/version.rb

Summary

Maintainability
A
0 mins
Test Coverage

Freeze mutable objects assigned to constants.
Open

  VERSION = '1.1.0'
Severity: Minor
Found in lib/nitlink/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

Final newline missing.
Open

end
Severity: Minor
Found in lib/nitlink/version.rb by rubocop

There are no issues that match your filters.

Category
Status