如何将IDEA设置为自动缩进return标记的整个句子?IDE只自动缩进第一行,但忽略后面的行。因此,checkstyle会指出这一行缩进不正确。当我使用四个制表符缩进行时,checkstyle消息消失,但在我使用Ctrl+Alt+L重新格式化代码后,制表符字符被删除,我再次得到相同的消息。
return
xxhby3vn1#
当前IntelliJ-IDEA(2022.2)对此有一个设置。我用它成功地摆脱了CheckStyle错误。在Settings > Editor > Code Style > Java > JavaDoc选项卡下,节点Other > Indent continuation lines,只需激活该CheckBox。
Settings > Editor > Code Style > Java > JavaDoc
Other > Indent continuation lines
1条答案
按热度按时间xxhby3vn1#
当前IntelliJ-IDEA(2022.2)对此有一个设置。我用它成功地摆脱了CheckStyle错误。在
Settings > Editor > Code Style > Java > JavaDoc
选项卡下,节点Other > Indent continuation lines
,只需激活该CheckBox。