From f4285cbfea27fb3c2a05d1adcad29cfc0fd1e3e6 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Fri, 8 Mar 2019 18:53:32 +0100 Subject: [PATCH] Remove deactivated Credo checks Signed-off-by: Thomas Citharel --- .credo.exs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.credo.exs b/.credo.exs index d53bbcebc..f349c380d 100644 --- a/.credo.exs +++ b/.credo.exs @@ -123,7 +123,6 @@ {Credo.Check.Warning.ExpensiveEmptyEnumCheck, []}, {Credo.Check.Warning.IExPry, []}, {Credo.Check.Warning.IoInspect, []}, - {Credo.Check.Warning.LazyLogging, []}, {Credo.Check.Warning.OperationOnSameValues, []}, {Credo.Check.Warning.OperationWithConstantResult, []}, {Credo.Check.Warning.RaiseInsideRescue, []}, @@ -147,11 +146,17 @@ {Credo.Check.Refactor.DoubleBooleanNegation, false}, {Credo.Check.Refactor.VariableRebinding, false}, {Credo.Check.Warning.MapGetUnsafePass, false}, - {Credo.Check.Warning.UnsafeToAtom, false} + {Credo.Check.Warning.UnsafeToAtom, false}, # # Custom checks can be created using `mix credo.gen.check`. # + + # + # Removed checks + # + {Credo.Check.Warning.LazyLogging, false}, + {Credo.Check.Refactor.MapInto, false}, ] } ]