Turn off unneeded Credo checks

This commit is contained in:
Claudio Ortolina
2025-02-18 12:56:29 +00:00
parent 17a1e87be5
commit 631552b487
+16
View File
@@ -0,0 +1,16 @@
%{
configs: [
%{
name: "default",
checks: %{
disabled: [
{Credo.Check.Refactor.CyclomaticComplexity, []},
{Credo.Check.Refactor.Nesting, []},
{Credo.Check.Readability.ModuleDoc, []},
{Credo.Check.Design.TagTODO, []}
]
}
# files etc.
}
]
}