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