redhat-developer / redhat-developer/vscode-java
Add formatter options to format multiple parameters with new lines
未关闭
还没有人认领这个 Issue。
formatter
preferences
question
- 主要语言
- TypeScript
- 星标
- 2.3k
- 派生
- 546
- 平均合并
- 20 小时 1 分钟
- 30 天内合并 PR
- 11
描述
I'd like my code to be formatted with new lines for annotation, constructor or method call or declaration with multiple parameters.
For instance:
@Parameter(
in = ParameterIn.PATH,
name = "resourceName",
description = "Resource Name",
required = true,
example = "1",
schema = @Schema(type = SchemaType.STRING, minLength = 1)
)
Current formatter makes a one-liner like this:
@Parameter(in = ParameterIn.PATH, name = "resourceName", description = "Resource Name", required = true, example = "1", schema = @Schema(type = SchemaType.STRING, minLength = 1))
So the formatter should insert new line after the opening brace and comma and before the closing brace.
Environment
- Operating System: MacOs Monterey 12.3
- JDK version: openjdk version "11.0.15" 2022-04-19
- Visual Studio Code version: 1.67.2
- Java extension version: v1.6.0
Steps To Reproduce
- Add annotation with multiple parameters
- Format the code
- In my current formatter version it should compact it to one line
Current Result
@Parameter(in = ParameterIn.PATH, name = "resourceName", description = "Resource Name", required = true, example = "1", schema = @Schema(type = SchemaType.STRING, minLength = 1))
Expected Result
@Parameter(
in = ParameterIn.PATH,
name = "resourceName",
description = "Resource Name",
required = true,
example = "1",
schema = @Schema(type = SchemaType.STRING, minLength = 1)
)
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
使用注解示例复现格式化器的行为,并检查格式化器的入口点及其现有的选项处理。可配置的格式化能够在开始分隔符之后和逗号之后、结束分隔符之前,将参数放置在单独的行上,并使用预期的缩进时,工作即完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- java
- 领域
- tooling
- Issue 类型
- 功能
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100