elixir-mode seems to think a `.` in a `use` expression is the beginning of a new scope and indents accordingly: ``` elixir defmodule Banana do use GenServer.Behaviour def elixir_mode_indents_to_here do 1 + 1 end ``` In other words, it aligns the next line to the period.