PowerShell / PowerShell/PSScriptAnalyzer
Code Formatting : Whitespacing one line hashtable
未关闭
还没有人认领这个 Issue。
Area - Rules
Issue - Bug
- 主要语言
- C#
- 星标
- 2.2k
- 派生
- 414
- 平均合并
- 13 小时 1 分钟
- 30 天内合并 PR
- 2
描述
Hello
I am looking for a improvment on the current formatting tools by adding a whitespace after open bracket and before closing non empty curly brackets like :
#Actual
$emptyHash = @{ } # an empty Hash
$myHash = @{foo = "bar"}
#Expected
$emptyHash = @{} # an empty Hash
$myHash = @{ foo = "bar" } #whitespace after `{ `and before ` }`
Additional information:
-
I use the PowerShell extension on VS Code to format automaticaly my code on save.
-
My settings.json file:
{
"editor.formatOnSave": true,
"powershell.codeFormatting.preset": "Custom",
"powershell.codeFormatting.alignPropertyValuePairs": true,
"powershell.codeFormatting.ignoreOneLineBlock": false,
"powershell.codeFormatting.newLineAfterCloseBrace": true,
"powershell.codeFormatting.newLineAfterOpenBrace": true,
"powershell.codeFormatting.openBraceOnSameLine": false,
"powershell.codeFormatting.whitespaceAfterSeparator": true,
"powershell.codeFormatting.whitespaceAroundOperator": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
"powershell.scriptAnalysis.enable": true,
"files.trimTrailingWhitespace": true,
}
This feature exist on other language :
https://github.com/Microsoft/TypeScript/issues/9613#issuecomment-268460847
Regards,
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
该 issue 没有指出文件或测试。首先定位 PowerShell 对单行 hashtables 的代码格式化处理,并使用列出的自定义设置复现 issue 中的示例。完成的标准是:非空的花括号 hashtables 会获得周围的空白,而空的 hashtables 保持不变,并覆盖这两种情况。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- csharp, powershell
- 领域
- developer-experience, tooling
- Issue 类型
- 功能
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100