【发布时间】:2021-05-31 16:40:51
【问题描述】:
vscode中的哪个eclipse-formatter设置会完成下面的格式化,特别关注参数对齐?
当前
public ResponseEntity retrieveAgreement(final String one, final Long someId,
final Long anotherId, final Long otherPAram) {
// Omitted
}
希望
public ResponseEntity retrieveAgreement(final String one,
final Long someId,
final Long anotherId,
final Long otherParam) {
// Omitted
}
【问题讨论】:
标签: java visual-studio-code vscode-settings eclipse-formatter