wrstudios/frodata

View on GitHub
lib/frodata/properties/number.rb

Summary

Maintainability
A
0 mins
Test Coverage

Line is too long. [90/80]
Open

          validation_error "Value is outside accepted range: #{min_value} to #{max_value}"
Severity: Minor
Found in lib/frodata/properties/number.rb by rubocop

Use a guard clause instead of wrapping the code inside a conditional expression.
Open

        if value > max_value || value < min_value
Severity: Minor
Found in lib/frodata/properties/number.rb by rubocop

Use a guard clause instead of wrapping the code inside a conditional expression

Example:

# bad
def test
  if something
    work
  end
end

# good
def test
  return unless something
  work
end

# also good
def test
  work if something
end

# bad
if something
  raise 'exception'
else
  ok
end

# good
raise 'exception' if something
ok

There are no issues that match your filters.

Category
Status