I am looking for a tool to report all exported functions with missing @doc in a project.
So far I have found:
Inch - I have not been able to use it since several Elixir minor versions.
Credo - It is useful for many things and missing @spec but I am not sure if there is a way to report missing @doc attributes. Maybe that could be a proposal.
Doctor - It does not report what functions are missing, and reports functions even it there is @moduledoc false in the module, which does not work quite well with my workflow.
Does anyone knows another tool that could do what I want?
Bonus point if it reports missing @doc on @callback declarations!.
Otherwise I will see if a custom credo check is possible…