class RuboCop::Cop::Layout::IndentationConsistency

def check(node)

def check(node)
  if style == :rails
    check_rails_style(node)
  else
    check_normal_style(node)
  end
end