SpeciesFileGroup/taxonworks

View on GitHub
lib/application_enumeration.rb

Summary

Maintainability
A
0 mins
Test Coverage

TODO found
Open

  # TODO: This should be a require check likely, for lib/taxon_works.rb or some such
Severity: Minor
Found in lib/application_enumeration.rb by fixme

Use 2 (not 3) spaces for indentation.
Open

     target.attributes.select{|k,v| !(k =~ /\Amd5_|_id\z|\Aid\z|_at\z/)}.symbolize_keys.keys.sort
Severity: Minor
Found in lib/application_enumeration.rb by rubocop

This cop checks for indentation that doesn't use the specified number of spaces.

See also the IndentationConsistency cop which is the companion to this one.

Example:

# bad
class A
 def test
  puts 'hello'
 end
end

# good
class A
  def test
    puts 'hello'
  end
end

Example: IgnoredPatterns: ['^\s*module']

# bad
module A
class B
  def test
  puts 'hello'
  end
end
end

# good
module A
class B
  def test
    puts 'hello'
  end
end
end

There are no issues that match your filters.

Category
Status