You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Parameter(
in = ParameterIn.PATH,
name = "resourceName",
description = "Resource Name",
required = true,
example = "1",
schema = @Schema(type = SchemaType.STRING, minLength = 1)
)
The text was updated successfully, but these errors were encountered:
slezhnin
changed the title
Add formatter options to format parameters with new lines
Add formatter options to format multiple parameters with new lines
May 30, 2022
I found that I needed to set it to org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=49 (instead of 48) to force the setting. Otherwise it's optional.
I'd like my code to be formatted with new lines for annotation, constructor or method call or declaration with multiple parameters.
For instance:
Current formatter makes a one-liner like this:
So the formatter should insert new line after the opening brace and comma and before the closing brace.
Environment
Steps To Reproduce
Current Result
Expected Result
The text was updated successfully, but these errors were encountered: