inertia186/radiator

View on GitHub
lib/radiator/type/future.rb

Summary

Maintainability
A
0 mins
Test Coverage

Unused method argument - value. If it's necessary, use _ or _value as an argument name to indicate that it won't be used. You can also write as initialize(*) if you want the method to accept any arguments but don't care about them.
Open

      def initialize(value)
Severity: Minor
Found in lib/radiator/type/future.rb by rubocop

This cop checks for unused method arguments.

Example:

# bad

def some_method(used, unused, _unused_but_allowed)
  puts used
end

Example:

# good

def some_method(used, _unused, _unused_but_allowed)
  puts used
end

Trailing whitespace detected.
Open

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

Trailing whitespace detected.
Open

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

Put empty method definitions on a single line.
Open

      def to_s
      end
Severity: Minor
Found in lib/radiator/type/future.rb by rubocop

This cop checks for the formatting of empty method definitions. By default it enforces empty method definitions to go on a single line (compact style), but it can be configured to enforce the end to go on its own line (expanded style).

Note: A method definition is not considered empty if it contains comments.

Example: EnforcedStyle: compact (default)

# bad
def foo(bar)
end

def self.foo(bar)
end

# good
def foo(bar); end

def foo(bar)
  # baz
end

def self.foo(bar); end

Example: EnforcedStyle: expanded

# bad
def foo(bar); end

def self.foo(bar); end

# good
def foo(bar)
end

def self.foo(bar)
end

Trailing whitespace detected.
Open

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

There are no issues that match your filters.

Category
Status