Packages

IntellijElixir allows intellij-elixir to ask Elixir for the native quoted form of code to check that intellij-elixir's quoted form matches.

Current section

Files

Jump to
intellij_elixir lib intellij_elixir.ex
Raw

lib/intellij_elixir.ex

defmodule IntellijElixir do
@moduledoc """
Exposed `GenServer`, `IntellijElixir.Quoter` that can quote code using `Code.string_to_quoted/1`
"""
use Application
@spec start(Application.start_type, []) :: {:ok, pid}
def start(_type, _args) do
IntellijElixir.Supervisor.start_link
end
end