koushikuk
How to remove waring "Modules should have a @moduledoc tag" - mix credo -a
I am using mix credo -a to check code readably. But I am getting multiple message as “Modules should have a @moduledoc tag.” I am not sure how to suppress/remove this.
Thanks in advance for any kind of help.
Most Liked
ityonemo
Or you could just document your modules 
Fl4m3Ph03n1x
You can add @moduledoc false and credo will skip the module’s documentation, not showing the warning.
OvermindDL1
This will also specifically prevent the module from even being listed in generation documentation and some other lookups as well.
NobbZ
Sometimes when you are not sure about how to solve an issue, you can use mix credo explain, and it will tell you something about the suggestion and how to resolve it.
The simplest way though to solve your issue at hand is, to simply document the modules that have this issue: @moduledoc







