#elixirls — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #elixirls, aggregated by home.social.
-
#ProTip if you are using #ElixirLS in a mixed #Elixir and #Gleam project (using #MixGleam). If you encounter ElixirLS going into an infinite compile loop, you can set up the :gleam compiler in mix.exs to not be used when in :test Mix env:
```elixir
compilers:
if Mix.env() != :test do
[:gleam]
else
[]
end ++ Mix.compilers()
```This stopped the compile loop for me (after a restart) and allowed ElixirLS to work.
-
-
rm -r deps _build .elixir_ls && mix deps.get