From 7c15e1fae60b1fd7d5e73eae331170e5522d16a6 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Thu, 26 Sep 2024 00:32:44 +0000 Subject: [PATCH] chore: execute dialyzer with short format --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 247d6f9..2ebda1a 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ credo: ## run credo .PHONY: dialyzer dialyzer: ## run dialyzer - @mix dialyzer --no-check --quiet --ignore-exit-status --format short + @mix dialyzer --format short .PHONY: static_code_analysis static_code_analysis: check_format credo dialyzer ## run static code analysis