Elixir wants to warn me that my @doc annotations won't get copied to the beam file:
warning: function foo/1 is private, @doc's are always discarded for private functions
lib/hello/world.ex:12
But I'd rather use @doc for all my function documentation instead of switching between @doc and #.
How can I tell the compiler to stop warning me about this?