Skip to content

Commit 2c02969

Browse files
committed
allow running dialyzer inside apps
1 parent 9c4c4ca commit 2c02969

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

apps/elixir_ls_debugger/mix.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ defmodule ElixirLS.Debugger.Mixfile do
2626
defp deps do
2727
[
2828
{:elixir_sense, github: "elixir-lsp/elixir_sense"},
29-
{:elixir_ls_utils, in_umbrella: true}
29+
{:elixir_ls_utils, in_umbrella: true},
30+
{:dialyxir, "~> 1.0", runtime: false}
3031
]
3132
end
3233
end

apps/elixir_ls_utils/mix.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ defmodule ElixirLS.Utils.Mixfile do
2828
defp deps do
2929
[
3030
{:jason_vendored, github: "elixir-lsp/jason", branch: "vendored"},
31-
{:mix_task_archive_deps, github: "elixir-lsp/mix_task_archive_deps"}
31+
{:mix_task_archive_deps, github: "elixir-lsp/mix_task_archive_deps"},
32+
{:dialyxir, "~> 1.0", runtime: false}
3233
]
3334
end
3435

0 commit comments

Comments
 (0)