From 8268d8d498bac183d26640d6ecad0ea63c6e19db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Eppl=C3=A9e?= Date: Wed, 14 May 2025 16:32:48 +0200 Subject: [PATCH] Disable ModuleDoc check Adding module documentation for all our Ash resources seems desirable, but ultimately unrealistic, and I think it's more likely that this check will result in one-liner documentation that doesn't contain any real information. --- .credo.exs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.credo.exs b/.credo.exs index 47b5017..d7efb3f 100644 --- a/.credo.exs +++ b/.credo.exs @@ -161,6 +161,8 @@ {Credo.Check.Warning.WrongTestFileExtension, []} ], disabled: [ + # Checks disabled by the Mitgliederverwaltung Team + {Credo.Check.Readability.ModuleDoc, []}, # # Checks scheduled for next check update (opt-in for now) {Credo.Check.Refactor.UtcNowTruncate, []},