From eb43b7c79c7a2ccf46444f4fcc68caa7f38190bb Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 4 Jan 2024 13:01:22 +0100 Subject: [PATCH] style(credo): disable credo Credo.Check.Warning.MissedMetadataKeyInLoggerConfig check It's buggy https://github.com/rrrene/credo/issues/1101 Signed-off-by: Thomas Citharel --- .credo.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.credo.exs b/.credo.exs index eb8b190a7..e670aab20 100644 --- a/.credo.exs +++ b/.credo.exs @@ -33,7 +33,7 @@ # If you want to enforce a style guide and need a more traditional linting # experience, you can change `strict` to `true` below: # - strict: false, + strict: true, # # If you want to use uncolored output by default, you can change `color` # to `false` below: @@ -160,6 +160,7 @@ # {Credo.Check.Warning.LazyLogging, false}, {Credo.Check.Refactor.MapInto, false}, + {Credo.Check.Warning.MissedMetadataKeyInLoggerConfig, false} ] } ]