From 570597381fa4b86a43cadcdaea0abdfde7ec3d5d Mon Sep 17 00:00:00 2001 From: Samuel Manzanera Date: Thu, 20 Apr 2023 10:29:42 +0200 Subject: [PATCH] Use .exs file to avoid credo compilation issue in prod (#984) --- .credo.exs | 2 +- lib/checks/{at_vsn.ex => at_vsn.exs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/checks/{at_vsn.ex => at_vsn.exs} (100%) diff --git a/.credo.exs b/.credo.exs index 76b53a511..bd2c8a24c 100644 --- a/.credo.exs +++ b/.credo.exs @@ -16,7 +16,7 @@ excluded: [~r"/_build/", ~r"/deps/", ~r"/node_modules/"] }, color: true, - requires: ["./lib/checks/*.ex"], + requires: ["./lib/checks/*.exs"], checks: [ # Custom checks {Archethic.Checks.AtVsn, []}, diff --git a/lib/checks/at_vsn.ex b/lib/checks/at_vsn.exs similarity index 100% rename from lib/checks/at_vsn.ex rename to lib/checks/at_vsn.exs