app/controllers/meetup_sessions_controller.rb
Align the parameters of a method call if they span more than one line. Open
Open
next_meetup.holdings.first.user).deliver
- Read upRead up
- Exclude checks
Here we check if the parameters on a multi-line method call or definition are aligned.
Example: EnforcedStyle: withfirstparameter (default)
# good
foo :bar,
:baz
# bad
foo :bar,
:baz
Example: EnforcedStyle: withfixedindentation
# good
foo :bar,
:baz
# bad
foo :bar,
:baz
Line is too long. [195/80] Open
Open
.not(meetup_id: @meetup.id).left_joins(:assistances).group(:id).having('COUNT(assistances.id) <= ?', @session.assistances.count).order('COUNT(assistances.id) DESC').first
- Exclude checks