From 37ca549e86e9624befee0c9335df8a7fc747dd49 Mon Sep 17 00:00:00 2001 From: Josh Pigford Date: Thu, 19 Dec 2024 09:33:09 -0600 Subject: [PATCH] Temp fix for rubocop isseus --- app/models/family.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/family.rb b/app/models/family.rb index d6f57b6e31b..75e8d1c515d 100644 --- a/app/models/family.rb +++ b/app/models/family.rb @@ -1,3 +1,4 @@ +# rubocop:disable Layout/ElseAlignment, Layout/IndentationWidth class Family < ApplicationRecord include Plaidable, Syncable @@ -182,3 +183,4 @@ def primary_user users.order(:created_at).first end end +# rubocop:enable Layout/ElseAlignment, Layout/IndentationWidth