inertia186/radiator

View on GitHub
lib/radiator/operation_ids.rb

Summary

Maintainability
A
0 mins
Test Coverage

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Missing top-level module documentation comment.
Open

  module OperationIds
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

Example:

# bad
class Person
  # ...
end

# good
# Description/Explanation of Person class
class Person
  # ...
end

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

    
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

    
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

Freeze mutable objects assigned to constants.
Open

    IDS = [
      :vote_operation,
      :comment_operation,
      
      :transfer_operation,
Severity: Minor
Found in lib/radiator/operation_ids.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

Trailing whitespace detected.
Open

      
Severity: Minor
Found in lib/radiator/operation_ids.rb by rubocop

There are no issues that match your filters.

Category
Status