Hey there! I've noticed that doctor reports on modules generated by defimpl.
Credo ignores these modules today during @defmodule checks. defimpl modules do not appear in ex_doc, so this makes sense.
Interestingly, doctor does seem to recognize that my undocumented functions in my defimpls do not count! doc/spec coverage for the module is N/A and counts are 0'd out. However, it still reports on the module, and complains about a missing @moduledoc.
Hey there! I've noticed that
doctor
reports on modules generated bydefimpl
.Credo ignores these modules today during
@defmodule
checks.defimpl
modules do not appear in ex_doc, so this makes sense.Interestingly, doctor does seem to recognize that my undocumented functions in my
defimpl
s do not count! doc/spec coverage for the module isN/A
and counts are0
'd out. However, it still reports on the module, and complains about a missing@moduledoc
.