app/validators/user_belongs_to_project_validator.rb
Use a guard clause instead of wrapping the code inside a conditional expression. Open
Open
if record.project && !value.nil?
- 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