class RuboCop::Cop::Layout::InitialIndentation

def on_new_investigation

def on_new_investigation
  space_before(first_token) do |space|
    add_offense(first_token.pos) do |corrector|
      corrector.remove(space)
    end
  end
end