Enable Nesting credo check

With two accepted exceptions
This commit is contained in:
Claudio Ortolina
2026-02-17 15:30:30 +00:00
parent 2faddbf0c6
commit e7df2614bc
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -3,9 +3,11 @@
%{
name: "default",
checks: %{
extra: [
{Credo.Check.Refactor.Nesting, max_nesting: 3}
],
disabled: [
{Credo.Check.Refactor.CyclomaticComplexity, []},
{Credo.Check.Refactor.Nesting, []},
{Credo.Check.Readability.ModuleDoc, []}
]
}