From 73de2eea6409b43906187d889ee8d3fba18adc00 Mon Sep 17 00:00:00 2001 From: Zach Allaun Date: Tue, 16 Jul 2024 15:25:01 -0400 Subject: [PATCH] fix: ignore no_unknown dialyzer warning --- lib/mix/tasks/mneme.watch.ex | 1 - mix.exs | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mix/tasks/mneme.watch.ex b/lib/mix/tasks/mneme.watch.ex index d2502bb..65a5838 100644 --- a/lib/mix/tasks/mneme.watch.ex +++ b/lib/mix/tasks/mneme.watch.ex @@ -145,7 +145,6 @@ defmodule Mix.Tasks.Mneme.Watch do Mix.Task.run(:test, cli_args) end - @dialyzer {:no_unknown, recompile: 0} defp recompile do IEx.Helpers.recompile() end diff --git a/mix.exs b/mix.exs index 0e20efa..4e4e496 100644 --- a/mix.exs +++ b/mix.exs @@ -144,7 +144,8 @@ defmodule Mneme.MixProject do :underspecs, # disable warnings: - :no_return + :no_return, + :no_unknown ] ] end