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
}