AgileVentures/LocalSupport

View on GitHub
app/models/csv_organisation.rb

Summary

Maintainability
A
0 mins
Test Coverage

Rename is_organisation_removed? to organisation_removed?. (https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark)
Open

  def is_organisation_removed?
Severity: Minor
Found in app/models/csv_organisation.rb by rubocop

This cop makes sure that predicates are named properly.

Example:

# bad
def is_even?(value)
end

# good
def even?(value)
end

# bad
def has_value?
end

# good
def value?
end

There are no issues that match your filters.

Category
Status