autotelik/datashift

View on GitHub
lib/tasks/thor_behaviour.rb

Summary

Maintainability
A
0 mins
Test Coverage

TODO found
Open

        # TODO: make this more robust ? e.g what about when using active record but not in Rails app, Sinatra etc
Severity: Minor
Found in lib/tasks/thor_behaviour.rb by fixme

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

      if File.exist?(File.expand_path('config/environment.rb'))
Severity: Minor
Found in lib/tasks/thor_behaviour.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