Add and apply MultilineMethodCallIndentation rule

This commit is contained in:
Javi Martín
2023-07-01 18:08:54 +02:00
parent 629e208e9d
commit 5b6de96241
35 changed files with 131 additions and 110 deletions

View File

@@ -9,7 +9,9 @@ class Budgets::Executions::ImageComponent < ApplicationComponent
private
def milestone
investment.milestones.order_by_publication_date
.select { |milestone| milestone.image.present? }.last
investment.milestones
.order_by_publication_date
.select { |milestone| milestone.image.present? }
.last
end
end