Currently when Intellij IDEA autocompletes block comments, e.g. typing /**+<return>
, IDEA will create a block comment like so:
/**
* Comment goes here
*/
However, scaladoc recommends that block comment bodies are aligned differently:
/**
* Comment here
*/
(Note the whitespace difference).
How is this configured?