Open ydakuka opened 1 year ago
I treat where.not as a single method, so I suggest not to divide it into two lines.
where.not
# bad User.where .not(id: [1, 2, 3]) .ids # good User.where.not(id: [1, 2, 3]) .ids
I treat
where.not
as a single method, so I suggest not to divide it into two lines.