app/validators/sponsor_validator.rb
Line is too long. [82/80] Open
Open
record.errors[:last_payment_date] << "Last payment date must be in the past"
- Exclude checks
Use a guard clause instead of wrapping the code inside a conditional expression. Open
Open
if !record.last_payment_date.nil? && record.last_payment_date > Date.today
- Read upRead up
- Exclude checks
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
Prefer single-quoted strings when you don't need string interpolation or special symbols. Open
Open
record.errors[:last_payment_date] << "Last payment date must be in the past"
- Read upRead up
- Exclude checks
Checks if uses of quotes match the configured preference.
Example: EnforcedStyle: single_quotes (default)
# bad
"No special symbols"
"No string interpolation"
"Just text"
# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"
Example: EnforcedStyle: double_quotes
# bad
'Just some text'
'No special chars or interpolation'
# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"