Running `ggVG=` to indent the file leads to: # Actual ```ex defmodule MyApp.Foo do use MyApp.Web, :live_component @impl true def mount(socket) do {:ok, socket} end @impl true def render(assigns) do ~L""" component! """ end end ``` # Expected ```ex defmodule MyApp.Foo do use MyApp.Web, :live_component @impl true def mount(socket) do {:ok, socket} end @impl true def render(assigns) do ~L""" component! """ end end ```